From 1e86976cfeceb2575da71e2c39988fd8fe81c11e Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 24 Mar 2019 08:53:30 +0100 Subject: [PATCH] :construction_worker: fixed paths --- .doozer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.doozer.json b/.doozer.json index a5a507c0..f9b10b9d 100644 --- a/.doozer.json +++ b/.doozer.json @@ -35,15 +35,16 @@ "builddeps": ["cmake", "make", "wget", "gcc-c++"], "buildcmd": [ "uname -a", + "cd", "wget https://github.com/Kitware/CMake/releases/download/v3.14.0/cmake-3.14.0.tar.gz", "tar xfz cmake-3.14.0.tar.gz", "cd cmake-3.14.0", "./bootstrap", "make -j8", - "cd ..", + "cd", "mkdir build", "cd build", - "../cmake-3.14.0/bin/cmake ..", + "../cmake-3.14.0/bin/cmake /project/repo/checkout", "make -j8", "ctest -VV -j8" ]