Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Skip build of 201.end and 401.end due to Jenkins errors
credman committed Oct 8, 2024
1 parent 6a19e11 commit 51c0fb5
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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 {
4 changes: 3 additions & 1 deletion 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=$?

0 comments on commit 51c0fb5

Please sign in to comment.