From 12d76f4426957c59cabfcca135af2874d82ea600 Mon Sep 17 00:00:00 2001 From: Lorenzo Fontana Date: Thu, 12 Dec 2019 17:03:50 +0100 Subject: [PATCH] build: fix building from the falcosecurity folder Co-Authored-By: Leonardo Di Donato Signed-off-by: Lorenzo Fontana --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 56e2aba0..205dcd9b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,6 @@ install: - pushd ../sysdig && (git checkout "${BRANCH}" || exit 0) && echo "Using branch:" $(git rev-parse --abbrev-ref HEAD) && popd script: - mkdir build - - cmake .. - - make -j4 falco + - pushd build && cmake .. && make -j4 falco && popd # todo(fntlnz): execute tests and regression tests at this point #- ./scripts/build "${TRAVIS_BUILD_DIR}/.." "${TRAVIS_BUILD_DIR}/build"