1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-11-29 21:32:24 +01:00

Added Ubuntu 14.04. It's still pretty popular

This commit is contained in:
Pavel Odintsov 2022-02-09 14:27:32 +00:00
parent 049ef32cf3
commit c9c22efc36

@ -83,7 +83,35 @@ jobs:
paths:
- /opt
- run: cd src; mkdir -p build; cd build; cmake ..; make
- run: /opt/fastnetmon/fastnetmon --configuration_check
- run: /opt/fastnetmon/fastnetmon --configuration_check
ubuntu1404:
docker:
- image: ubuntu:trusty-20191217
steps:
- checkout
- run: apt-get update; true
- run: apt-get install -y perl wget
- run:
name: install_required_packages
no_output_timeout: 20m
command: perl src/fastnetmon_install.pl --install_dependency_packages_only
- restore_cache:
keys:
- "{{ .Environment.CIRCLE_JOB }}_dependencies_26_05_2020"
- run:
name: install_dependencies
no_output_timeout: 35m
command: perl src/fastnetmon_install.pl --use-git-master -api --gobgp
- run:
name: collect_debug
command: cat /tmp/fastnetmon_install.log
when: on_fail
- save_cache:
key: "{{ .Environment.CIRCLE_JOB }}_dependencies_26_05_2020"
paths:
- /opt
- run: cd src; mkdir -p build; cd build; cmake ..; make
- run: /opt/fastnetmon/fastnetmon --configuration_check
debian8:
docker:
- image: debian:jessie-20200514
@ -257,6 +285,7 @@ workflows:
- debian8
- debian9
- debian10
- ubuntu1404
- ubuntu1604
- ubuntu1804
- ubuntu2004