@@ -17,7 +17,7 @@ pipeline {
17
17
sh ' python script/validators/source_validator.py'
18
18
sh ' mkdir build'
19
19
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
20
- sh ' cd build && make check -j4 || true '
20
+ sh ' cd build && make check -j4'
21
21
// sh 'cd build && cp -pr test /job/' // special tests collection step just for this stage
22
22
sh ' cd build && make install'
23
23
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
@@ -33,7 +33,7 @@ pipeline {
33
33
sh ' python script/validators/source_validator.py'
34
34
sh ' mkdir build'
35
35
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
36
- sh ' cd build && make check -j4 || true '
36
+ sh ' cd build && make check -j4'
37
37
sh ' cd build && make install'
38
38
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
39
39
sh ' sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -48,7 +48,7 @@ pipeline {
48
48
sh ' python script/validators/source_validator.py'
49
49
sh ' mkdir build'
50
50
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
51
- sh ' cd build && make check -j4 || true '
51
+ sh ' cd build && make check -j4'
52
52
sh ' cd build && make install'
53
53
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
54
54
sh ' sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -63,7 +63,7 @@ pipeline {
63
63
sh ' python script/validators/source_validator.py'
64
64
sh ' mkdir build'
65
65
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
66
- sh ' cd build && make check -j4 || true '
66
+ sh ' cd build && make check -j4'
67
67
sh ' cd build && make install'
68
68
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
69
69
sh ' sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -88,7 +88,7 @@ pipeline {
88
88
// sh 'python script/validators/source_validator.py'
89
89
// sh 'mkdir build'
90
90
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
91
- // sh 'cd build && make check -j4 || true '
91
+ // sh 'cd build && make check -j4'
92
92
// sh 'cd build && make install'
93
93
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
94
94
// sh 'sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -103,7 +103,7 @@ pipeline {
103
103
// sh 'python script/validators/source_validator.py'
104
104
// sh 'mkdir build'
105
105
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
106
- // sh 'cd build && make check -j4 || true '
106
+ // sh 'cd build && make check -j4'
107
107
// sh 'cd build && make install'
108
108
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
109
109
// sh 'sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -118,7 +118,7 @@ pipeline {
118
118
// sh 'python script/validators/source_validator.py'
119
119
// sh 'mkdir build'
120
120
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
121
- // sh 'cd build && make check -j4 || true '
121
+ // sh 'cd build && make check -j4'
122
122
// sh 'cd build && make install'
123
123
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
124
124
// sh 'sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
@@ -133,43 +133,43 @@ pipeline {
133
133
// sh 'python script/validators/source_validator.py'
134
134
// sh 'mkdir build'
135
135
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
136
- // sh 'cd build && make check -j4 || true '
136
+ // sh 'cd build && make check -j4'
137
137
// sh 'cd build && make install'
138
138
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
139
139
// sh 'sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
140
140
// sh 'cd build && python ../script/validators/jdbc_validator.py'
141
141
// }
142
142
// }
143
143
144
- stage(' Fedora 27/gcc-7.2.1/llvm-4.0.1 (Debug)' ) {
145
- agent { docker { image ' fedora:27' } }
146
- steps {
147
- sh ' sudo /bin/bash -c "source ./script/installation/packages.sh"'
148
- sh ' python ./script/validators/source_validator.py'
149
- sh ' mkdir build'
150
- sh ' cd build && PATH=/usr/lib64/llvm4.0/bin:$PATH cmake -DCMAKE_CXX_FLAGS="-isystem /usr/include/llvm4.0" -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
151
- sh ' cd build && make check -j4 || true '
152
- sh ' cd build && make install'
153
- sh ' cd build && bash ../script/testing/psql/psql_test.sh'
154
- sh ' sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
155
- sh ' cd build && python ../script/validators/jdbc_validator.py'
156
- }
157
- }
144
+ // stage('Fedora 27/gcc-7.2.1/llvm-4.0.1 (Debug)') {
145
+ // agent { docker { image 'fedora:27' } }
146
+ // steps {
147
+ // sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
148
+ // sh 'python ./script/validators/source_validator.py'
149
+ // sh 'mkdir build'
150
+ // sh 'cd build && PATH=/usr/lib64/llvm4.0/bin:$PATH cmake -DCMAKE_CXX_FLAGS="-isystem /usr/include/llvm4.0" -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
151
+ // sh 'cd build && make check -j4'
152
+ // sh 'cd build && make install'
153
+ // sh 'cd build && bash ../script/testing/psql/psql_test.sh'
154
+ // sh 'sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
155
+ // sh 'cd build && python ../script/validators/jdbc_validator.py'
156
+ // }
157
+ // }
158
158
159
- stage(' Fedora 27/gcc-7.2.1/llvm-4.0.1 (Release)' ) {
160
- agent { docker { image ' fedora:27' } }
161
- steps {
162
- sh ' sudo /bin/bash -c "source ./script/installation/packages.sh"'
163
- sh ' python ./script/validators/source_validator.py'
164
- sh ' mkdir build'
165
- sh ' cd build && PATH=/usr/lib64/llvm4.0/bin:$PATH cmake -DCMAKE_CXX_FLAGS="-isystem /usr/include/llvm4.0" -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
166
- sh ' cd build && make check -j4 || true '
167
- sh ' cd build && make install'
168
- sh ' cd build && bash ../script/testing/psql/psql_test.sh'
169
- sh ' sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
170
- sh ' cd build && python ../script/validators/jdbc_validator.py'
171
- }
172
- }
159
+ // stage('Fedora 27/gcc-7.2.1/llvm-4.0.1 (Release)') {
160
+ // agent { docker { image 'fedora:27' } }
161
+ // steps {
162
+ // sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
163
+ // sh 'python ./script/validators/source_validator.py'
164
+ // sh 'mkdir build'
165
+ // sh 'cd build && PATH=/usr/lib64/llvm4.0/bin:$PATH cmake -DCMAKE_CXX_FLAGS="-isystem /usr/include/llvm4.0" -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
166
+ // sh 'cd build && make check -j4'
167
+ // sh 'cd build && make install'
168
+ // sh 'cd build && bash ../script/testing/psql/psql_test.sh'
169
+ // sh 'sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
170
+ // sh 'cd build && python ../script/validators/jdbc_validator.py'
171
+ // }
172
+ // }
173
173
174
174
// stage('CentOS 7/gcc-4.8.5/llvm-3.9.1 (Debug)') {
175
175
// agent { docker { image 'centos:7' } }
@@ -178,7 +178,7 @@ pipeline {
178
178
// sh 'python script/validators/source_validator.py'
179
179
// sh 'mkdir build'
180
180
// sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
181
- // sh 'cd build && make check -j4 || true '
181
+ // sh 'cd build && make check -j4'
182
182
// sh 'cd build && make install'
183
183
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
184
184
// sh 'sudo yum -q install -y wget java-devel' // prerequisites for jdbc_validator
@@ -193,7 +193,7 @@ pipeline {
193
193
// sh 'python script/validators/source_validator.py'
194
194
// sh 'mkdir build'
195
195
// sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
196
- // sh 'cd build && make check -j4 || true '
196
+ // sh 'cd build && make check -j4'
197
197
// sh 'cd build && make install'
198
198
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
199
199
// sh 'sudo yum -q install -y wget java-devel' // prerequisites for jdbc_validator
0 commit comments