mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-26 23:01:04 +08:00
Jenkinsfile : regenerated with zproject support for configurable test timeout
This commit is contained in:
parent
59347f68b8
commit
4110c6b751
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
@ -66,6 +66,10 @@ pipeline {
|
||||
defaultValue: true,
|
||||
description: 'Require that there are no files not discovered changed/untracked via .gitignore after builds and tests?',
|
||||
name: 'REQUIRE_GOOD_GITIGNORE')
|
||||
string (
|
||||
defaultValue: "30",
|
||||
description: 'When running tests, use this timeout (in minutes; be sure to leave enough for double-job of a distcheck too)',
|
||||
name: 'USE_TEST_TIMEOUT')
|
||||
booleanParam (
|
||||
defaultValue: true,
|
||||
description: 'When using temporary subdirs in build/test workspaces, wipe them after successful builds?',
|
||||
@ -176,7 +180,7 @@ pipeline {
|
||||
dir("tmp/test-check-withDRAFT") {
|
||||
deleteDir()
|
||||
unstash 'built-draft'
|
||||
timeout (time: 20, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" check'
|
||||
}
|
||||
sh 'echo "Are GitIgnores good after make check with drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||
@ -194,7 +198,7 @@ pipeline {
|
||||
dir("tmp/test-check-withoutDRAFT") {
|
||||
deleteDir()
|
||||
unstash 'built-nondraft'
|
||||
timeout (time: 20, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" check'
|
||||
}
|
||||
sh 'echo "Are GitIgnores good after make check without drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||
@ -212,7 +216,7 @@ pipeline {
|
||||
dir("tmp/test-memcheck-withDRAFT") {
|
||||
deleteDir()
|
||||
unstash 'built-draft'
|
||||
timeout (time: 20, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" memcheck && exit 0 ; echo "Re-running failed ($?) memcheck with greater verbosity" >&2 ; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" VERBOSE=1 memcheck-verbose'
|
||||
}
|
||||
sh 'echo "Are GitIgnores good after make memcheck with drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||
@ -230,7 +234,7 @@ pipeline {
|
||||
dir("tmp/test-memcheck-withoutDRAFT") {
|
||||
deleteDir()
|
||||
unstash 'built-nondraft'
|
||||
timeout (time: 20, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" memcheck && exit 0 ; echo "Re-running failed ($?) memcheck with greater verbosity" >&2 ; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" VERBOSE=1 memcheck-verbose'
|
||||
}
|
||||
sh 'echo "Are GitIgnores good after make memcheck without drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||
@ -248,7 +252,7 @@ pipeline {
|
||||
dir("tmp/test-distcheck-withDRAFT") {
|
||||
deleteDir()
|
||||
unstash 'built-draft'
|
||||
timeout (time: 30, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; DISTCHECK_CONFIGURE_FLAGS="--enable-drafts=yes --with-docs=no" ; export DISTCHECK_CONFIGURE_FLAGS; make DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS" LD_LIBRARY_PATH="$LD_LIBRARY_PATH" distcheck'
|
||||
}
|
||||
sh 'echo "Are GitIgnores good after make distcheck with drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||
@ -266,7 +270,7 @@ pipeline {
|
||||
dir("tmp/test-distcheck-withoutDRAFT") {
|
||||
deleteDir()
|
||||
unstash 'built-nondraft'
|
||||
timeout (time: 30, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; DISTCHECK_CONFIGURE_FLAGS="--enable-drafts=no --with-docs=no" ; export DISTCHECK_CONFIGURE_FLAGS; make DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS" LD_LIBRARY_PATH="$LD_LIBRARY_PATH" distcheck'
|
||||
}
|
||||
sh 'echo "Are GitIgnores good after make distcheck without drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||
@ -284,7 +288,7 @@ pipeline {
|
||||
dir("tmp/test-install-withDRAFT") {
|
||||
deleteDir()
|
||||
unstash 'built-draft'
|
||||
timeout (time: 20, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh """CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:\${LD_LIBRARY_PATH}"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}" DESTDIR="${params.USE_TEST_INSTALL_DESTDIR}/withDRAFT" install"""
|
||||
}
|
||||
sh """cd "${params.USE_TEST_INSTALL_DESTDIR}/withDRAFT" && find . -ls"""
|
||||
@ -303,7 +307,7 @@ pipeline {
|
||||
dir("tmp/test-install-withoutDRAFT") {
|
||||
deleteDir()
|
||||
unstash 'built-nondraft'
|
||||
timeout (time: 20, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh """CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:\${LD_LIBRARY_PATH}"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}" DESTDIR="${params.USE_TEST_INSTALL_DESTDIR}/withoutDRAFT" install"""
|
||||
}
|
||||
sh """cd "${params.USE_TEST_INSTALL_DESTDIR}/withoutDRAFT" && find . -ls"""
|
||||
@ -322,7 +326,7 @@ pipeline {
|
||||
dir("tmp/test-install-withDOCS") {
|
||||
deleteDir()
|
||||
unstash 'built-docs'
|
||||
timeout (time: 20, unit: 'MINUTES') {
|
||||
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||
sh """CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:\${LD_LIBRARY_PATH}"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}" DESTDIR="${params.USE_TEST_INSTALL_DESTDIR}/withDOCS" install"""
|
||||
}
|
||||
sh """cd "${params.USE_TEST_INSTALL_DESTDIR}/withDOCS" && find . -ls"""
|
||||
|
Loading…
x
Reference in New Issue
Block a user