From 51c0fb546dde73c7f004f4038b2bcbbfafa167e3 Mon Sep 17 00:00:00 2001 From: Chad Redman Date: Tue, 8 Oct 2024 18:31:13 -0400 Subject: [PATCH] Skip build of 201.end and 401.end due to Jenkins errors --- Jenkinsfile | 4 ++-- manualBuild.sh | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8058184..ff0289a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,8 +17,8 @@ TARGET_BRANCH = '202411' EXERCISE_FOLDERS = [ "base": "base", "101.1.1": "ex101/ex101.1.1", - "201.end": "ex201/ex201.end", - "401.end": "ex401/ex401.end", + //"201.end": "ex201/ex201.end", + //"401.end": "ex401/ex401.end", ] pipeline { diff --git a/manualBuild.sh b/manualBuild.sh index 4fcd7fe..3231fbb 100755 --- a/manualBuild.sh +++ b/manualBuild.sh @@ -8,7 +8,9 @@ if [ "$result" -ne 0 ]; then exit $result fi -for lesson in ex101 ex201 ex401; do +#EXERCISE_FOLDERS="ex101 ex201 ex401" +EXERCISE_FOLDERS="ex101" +for lesson in $EXERCISE_FOLDERS; do pushd $lesson ./manualBuild.sh result=$?