Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 46b44be

Browse files
Chad Doughertyapavlo
authored andcommitted
disable checks in TRACE build, disable CentOS and Fedora for now
coauthored with @pervazea
1 parent 24dd0d4 commit 46b44be

File tree

1 file changed

+59
-59
lines changed

1 file changed

+59
-59
lines changed

Jenkinsfile

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ pipeline {
4444
sh 'mkdir build'
4545
sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False -DUSE_SANITIZER=Address -DCMAKE_CXX_FLAGS="-DLOG_LEVEL=LOG_LEVEL_TRACE" .. && make -j4'
4646
// redirect output to /dev/null because it is voluminous
47-
sh 'cd build && make check -j4 > /dev/null || true'
48-
sh 'cd build && make benchmark -j4'
49-
sh 'cd build && make install'
50-
sh 'cd build && bash ../script/testing/psql/psql_test.sh'
51-
sh 'cd build && python ../script/validators/jdbc_validator.py'
47+
// sh 'cd build && make check -j4 > /dev/null || true'
48+
// sh 'cd build && make benchmark -j4'
49+
// sh 'cd build && make install'
50+
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
51+
// sh 'cd build && python ../script/validators/jdbc_validator.py'
5252
}
5353
}
5454

@@ -87,65 +87,65 @@ pipeline {
8787
// }
8888
// }
8989

90-
stage('Fedora 26/gcc-7.1.1/llvm-4.0.1 (Debug)') {
91-
agent { docker { image 'fedora:26' } }
92-
steps {
93-
sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
94-
sh 'python ./script/validators/source_validator.py'
95-
sh 'mkdir build'
96-
sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
97-
}
98-
}
90+
// stage('Fedora 26/gcc-7.1.1/llvm-4.0.1 (Debug)') {
91+
// agent { docker { image 'fedora:26' } }
92+
// steps {
93+
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
94+
// sh 'python ./script/validators/source_validator.py'
95+
// sh 'mkdir build'
96+
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
97+
// }
98+
// }
9999

100-
stage('Fedora 26/gcc-7.1.1/llvm-4.0.1 (Release)') {
101-
agent { docker { image 'fedora:26' } }
102-
steps {
103-
sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
104-
sh 'python ./script/validators/source_validator.py'
105-
sh 'mkdir build'
106-
sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
107-
}
108-
}
100+
// stage('Fedora 26/gcc-7.1.1/llvm-4.0.1 (Release)') {
101+
// agent { docker { image 'fedora:26' } }
102+
// steps {
103+
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
104+
// sh 'python ./script/validators/source_validator.py'
105+
// sh 'mkdir build'
106+
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
107+
// }
108+
// }
109109

110-
stage('Fedora 27/gcc-7.2.1/llvm-4.0.1 (Debug)') {
111-
agent { docker { image 'fedora:27' } }
112-
steps {
113-
sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
114-
sh 'python ./script/validators/source_validator.py'
115-
sh 'mkdir build'
116-
sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
117-
}
118-
}
110+
// stage('Fedora 27/gcc-7.2.1/llvm-4.0.1 (Debug)') {
111+
// agent { docker { image 'fedora:27' } }
112+
// steps {
113+
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
114+
// sh 'python ./script/validators/source_validator.py'
115+
// sh 'mkdir build'
116+
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
117+
// }
118+
// }
119119

120-
stage('Fedora 27/gcc-7.2.1/llvm-4.0.1 (Release)') {
121-
agent { docker { image 'fedora:27' } }
122-
steps {
123-
sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
124-
sh 'python ./script/validators/source_validator.py'
125-
sh 'mkdir build'
126-
sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
127-
}
128-
}
120+
// stage('Fedora 27/gcc-7.2.1/llvm-4.0.1 (Release)') {
121+
// agent { docker { image 'fedora:27' } }
122+
// steps {
123+
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
124+
// sh 'python ./script/validators/source_validator.py'
125+
// sh 'mkdir build'
126+
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
127+
// }
128+
// }
129129

130-
stage('CentOS 7/gcc-4.8.5/llvm-3.9.1 (Debug)') {
131-
agent { docker { image 'centos:7' } }
132-
steps {
133-
sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
134-
sh 'python ./script/validators/source_validator.py'
135-
sh 'mkdir build'
136-
sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
137-
}
138-
}
130+
// stage('CentOS 7/gcc-4.8.5/llvm-3.9.1 (Debug)') {
131+
// agent { docker { image 'centos:7' } }
132+
// steps {
133+
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
134+
// sh 'python ./script/validators/source_validator.py'
135+
// sh 'mkdir build'
136+
// sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
137+
// }
138+
// }
139139

140-
stage('CentOS 7/gcc-4.8.5/llvm-3.9.1 (Release)') {
141-
agent { docker { image 'centos:7' } }
142-
steps {
143-
sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
144-
sh 'python ./script/validators/source_validator.py'
145-
sh 'mkdir build'
146-
sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
147-
}
148-
}
140+
// stage('CentOS 7/gcc-4.8.5/llvm-3.9.1 (Release)') {
141+
// agent { docker { image 'centos:7' } }
142+
// steps {
143+
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
144+
// sh 'python ./script/validators/source_validator.py'
145+
// sh 'mkdir build'
146+
// sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
147+
// }
148+
// }
149149
// end gcc builds
150150

151151
// begin clang builds

0 commit comments

Comments
 (0)