File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 12
12
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
13
// License for the specific language governing permissions and limitations under
14
14
// the License.
15
- build_and_test = '''
15
+
16
+ build = '''
16
17
mkdir -p ${ERLANG_VERSION}
17
18
cd ${ERLANG_VERSION}
18
19
rm -rf build
@@ -21,7 +22,6 @@ cd build
21
22
tar -xf ${WORKSPACE}/apache-couchdb-*.tar.gz
22
23
cd apache-couchdb-*
23
24
./configure --with-nouveau --with-clouseau --js-engine=${JS_ENGINE}
24
- make check || (make build-report && false)
25
25
'''
26
26
27
27
docs_changed = " git diff --name-only origin/${ env.CHANGE_TARGET} | grep -q '^src/docs/'"
@@ -274,7 +274,8 @@ pipeline {
274
274
}
275
275
steps {
276
276
unstash ' tarball'
277
- sh( script : build_and_test )
277
+ sh( script : build )
278
+ retry(3 ) {sh ' cd ${ERLANG_VERSION}/build/apache-couchdb-* && make check || (make build-report && false)' }
278
279
}
279
280
post {
280
281
always {
You can’t perform that action at this time.
0 commit comments