Skip to content

Commit

Permalink
Skip build of 201.end and 401.end due to Jenkins errors
Browse files Browse the repository at this point in the history
  • Loading branch information
credman committed Oct 8, 2024
1 parent 6a19e11 commit 51c0fb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 3 additions & 1 deletion manualBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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=$?
Expand Down

0 comments on commit 51c0fb5

Please sign in to comment.