diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2022-01-06 18:40:26 -0500 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2022-01-06 18:40:26 -0500 |
commit | 1c6290e8b5649054a936c07d1134ef0cc4382259 (patch) | |
tree | 7c9f62c8551d596a01d363067066b3de97bfa456 /jjb/scripts | |
parent | 57dad8cbdae132eb48e9d358e0f0c1fc36c6b451 (diff) |
Skip vpp-csit-*tx2 jobs in production
- jobs currently either failing or
timing out after 90 minutes in production.
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Change-Id: I52131a255e55af8e5974136751ad6629fb4ccf59
Diffstat (limited to 'jjb/scripts')
-rwxr-xr-x | jjb/scripts/vpp/csit-device.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jjb/scripts/vpp/csit-device.sh b/jjb/scripts/vpp/csit-device.sh index 989193001..dca51be2b 100755 --- a/jjb/scripts/vpp/csit-device.sh +++ b/jjb/scripts/vpp/csit-device.sh @@ -17,6 +17,12 @@ echo "---> jjb/scripts/vpp/csit-device.sh" set -exuo pipefail +line="*************************************************************************" +if [[ "${SILO}" = "production" ]] && [[ ${JOB_NAME} == *tx2 ]] ; then + echo -e "\n$line\nSkipping ${JOB_NAME} on Jenkins ${SILO}..." + exit 0 +fi + # Clone CSIT git repository and proceed with entry script located there. # # Variables read: |