mirror of
https://github.com/pavel-odintsov/fastnetmon
synced 2024-11-26 13:14:31 +01:00
Increased build time for CircleCI
This commit is contained in:
parent
efc9dacbd5
commit
dab1c4a439
@ -7,7 +7,10 @@ jobs:
|
||||
- checkout
|
||||
- run: apt-get update; true
|
||||
- run: apt-get install -y perl wget
|
||||
- run: perl src/fastnetmon_install.pl --use-git-master
|
||||
- run:
|
||||
name: install_dependencies
|
||||
no_output_timeout: 20m
|
||||
command: perl src/fastnetmon_install.pl --use-git-master
|
||||
- run: cd src; mkdir -p build; cd build; cmake ..; make
|
||||
workflows:
|
||||
version: 2
|
||||
|
@ -1445,7 +1445,7 @@ sub install_fastnetmon {
|
||||
$cmake_params .= " -DENABLE_LUA_SUPPORT=OFF ";
|
||||
}
|
||||
|
||||
if (defined($ENV{'TRAVIS'}) && $ENV{'TRAVIS'}) {
|
||||
if ((defined($ENV{'TRAVIS'}) && $ENV{'TRAVIS'}) or (defined($ENV{'CI'}) && $ENV{'CI'})) {
|
||||
system("cmake .. $cmake_params");
|
||||
system("make $make_options");
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user