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 1212// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1313// License for the specific language governing permissions and limitations under
1414// the License.
15- build_and_test = '''
15+
16+ build = '''
1617mkdir -p ${ERLANG_VERSION}
1718cd ${ERLANG_VERSION}
1819rm -rf build
@@ -21,7 +22,6 @@ cd build
2122tar -xf ${WORKSPACE}/apache-couchdb-*.tar.gz
2223cd apache-couchdb-*
2324./configure --with-nouveau --with-clouseau --js-engine=${JS_ENGINE}
24- make check || (make build-report && false)
2525'''
2626
2727docs_changed = " git diff --name-only origin/${ env.CHANGE_TARGET} | grep -q '^src/docs/'"
@@ -274,7 +274,8 @@ pipeline {
274274 }
275275 steps {
276276 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)' }
278279 }
279280 post {
280281 always {
You can’t perform that action at this time.
0 commit comments