@@ -44,11 +44,11 @@ pipeline {
44
44
sh ' mkdir build'
45
45
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False -DUSE_SANITIZER=Address -DCMAKE_CXX_FLAGS="-DLOG_LEVEL=LOG_LEVEL_TRACE" .. && make -j4'
46
46
// 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'
52
52
}
53
53
}
54
54
@@ -87,65 +87,65 @@ pipeline {
87
87
// }
88
88
// }
89
89
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
+ // }
99
99
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
+ // }
109
109
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
+ // }
119
119
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
+ // }
129
129
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
+ // }
139
139
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
+ // }
149
149
// end gcc builds
150
150
151
151
// begin clang builds
0 commit comments