👷 unified paths

This commit is contained in:
Niels Lohmann 2019-03-24 09:02:06 +01:00
parent 1e86976cfe
commit 842d42b135
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -5,15 +5,16 @@
"builddeps": ["build-essential", "cmake", "wget"], "builddeps": ["build-essential", "cmake", "wget"],
"buildcmd": [ "buildcmd": [
"uname -a", "uname -a",
"cd",
"wget https://github.com/Kitware/CMake/releases/download/v3.14.0/cmake-3.14.0.tar.gz", "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", "tar xfz cmake-3.14.0.tar.gz",
"cd cmake-3.14.0", "cd cmake-3.14.0",
"./bootstrap", "./bootstrap",
"make -j8", "make -j8",
"cd ..", "cd",
"mkdir build", "mkdir build",
"cd build", "cd build",
"../cmake-3.14.0/bin/cmake ..", "../cmake-3.14.0/bin/cmake /project/repo/checkout",
"make -j8", "make -j8",
"ctest -VV -j8" "ctest -VV -j8"
] ]
@ -23,9 +24,10 @@
"builddeps": ["cmake", "make", "gcc gcc-c++"], "builddeps": ["cmake", "make", "gcc gcc-c++"],
"buildcmd": [ "buildcmd": [
"uname -a", "uname -a",
"cd"
"mkdir build", "mkdir build",
"cd build", "cd build",
"cmake ..", "cmake /project/repo/checkout",
"make -j8", "make -j8",
"ctest -VV -j8" "ctest -VV -j8"
] ]