@@ -18,11 +18,11 @@ variables:
18
18
19
19
# Generic commands for building
20
20
.build__template : &Build
21
- - cmake --build .. /build
21
+ - cmake --build ./build
22
22
23
23
# Generic commands for moving to the build directory and running tests
24
24
.run_test_template : &RunTests
25
- - cd .. /build
25
+ - cd ./build
26
26
- ctest -j2 -V
27
27
28
28
# Which packages are required for GCC compilation
@@ -41,7 +41,7 @@ variables:
41
41
- linux
42
42
artifacts :
43
43
paths :
44
- - ../ build
44
+ - build/
45
45
46
46
# Build steps to inherit from
47
47
.build_template :
@@ -51,7 +51,7 @@ variables:
51
51
- linux
52
52
artifacts :
53
53
paths :
54
- - ../ build
54
+ - build/
55
55
56
56
# Test steps to inherit form
57
57
.test_template :
@@ -79,7 +79,7 @@ gcc-configure-Debug:
79
79
extends : .configure_template
80
80
script :
81
81
- *GCCPackages
82
- - cmake -H. -B.. /build -GNinja -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/g++-$GCC_VERSION -DCMAKE_BUILD_TYPE=Debug
82
+ - cmake -H. -B./build -GNinja -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/g++-$GCC_VERSION -DCMAKE_BUILD_TYPE=Debug
83
83
84
84
gcc-build-Debug :
85
85
extends : .build_template
@@ -103,7 +103,7 @@ gcc-configure-Release:
103
103
extends : .configure_template
104
104
script :
105
105
- *GCCPackages
106
- - cmake -H. -B.. /build -GNinja -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/g++-$GCC_VERSION -DCMAKE_BUILD_TYPE=Release
106
+ - cmake -H. -B./build -GNinja -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/g++-$GCC_VERSION -DCMAKE_BUILD_TYPE=Release
107
107
108
108
gcc-build-Release :
109
109
extends : .build_template
@@ -127,7 +127,7 @@ clang-configure-Debug:
127
127
extends : .configure_template
128
128
script :
129
129
- *ClangPackages
130
- - cmake -H. -B.. /build -GNinja -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/clang++-$CLANG_VERSION -DCMAKE_BUILD_TYPE=Debug
130
+ - cmake -H. -B./build -GNinja -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/clang++-$CLANG_VERSION -DCMAKE_BUILD_TYPE=Debug
131
131
132
132
clang-build-Debug :
133
133
extends : .build_template
@@ -151,7 +151,7 @@ clang-configure-Release:
151
151
extends : .configure_template
152
152
script :
153
153
- *ClangPackages
154
- - cmake -H. -B.. /build -GNinja -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/clang++-$CLANG_VERSION -DCMAKE_BUILD_TYPE=Release
154
+ - cmake -H. -B./build -GNinja -DINCH_UNIT_TESTS=ON -DCMAKE_CXX_COMPILER=/usr/bin/clang++-$CLANG_VERSION -DCMAKE_BUILD_TYPE=Release
155
155
156
156
clang-build-Release :
157
157
extends : .build_template
0 commit comments