This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via df38c36e7d88d3bc5d87fc2506802a47043fdd96 (commit) from 0750f10fcab0a04b33a86ff12ca95739c7376a27 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/df38c36e7d88d3bc5d87fc2506802a4704... commit df38c36e7d88d3bc5d87fc2506802a47043fdd96 Author: Yanfei Guo <[email protected]> Date: Tue Sep 15 21:00:42 2015 -0500 maint/jenkins: enable full test for nightly jobs Previous version incorrectly set MPI_TEST_DATATYPE_TEST_LEVEL=min for all jobs. This patch fix that by only setting this environment variable when the build mode is per-commit. Signed-off-by: Ken Raffenetti <[email protected]> diff --git a/maint/jenkins/test-worker.sh b/maint/jenkins/test-worker.sh index bcb9edb..435011d 100755 --- a/maint/jenkins/test-worker.sh +++ b/maint/jenkins/test-worker.sh @@ -471,9 +471,12 @@ case "$netmod" in ;; esac -# run only the minimum level of datatype tests -MPITEST_DATATYPE_TEST_LEVEL=min -export MPITEST_DATATYPE_TEST_LEVEL +# run only the minimum level of datatype tests when it is per-commit job +if [[ "$BUILD_MODE" = "per-commit" ]]; then + MPITEST_DATATYPE_TEST_LEVEL=min + export MPITEST_DATATYPE_TEST_LEVEL +fi + make testing # Cleanup ----------------------------------------------------------------------- Summary of changes: maint/jenkins/test-worker.sh | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) hooks/post-receive -- MPICH primary repository