Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
grouper_training/manualBuild.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
28 lines (24 sloc)
599 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source ./buildVersion.sh | |
echo "Building tier/gte version ${VERSION_TAG}" | |
docker build --pull --tag=tier/gte:base-${VERSION_TAG} base/ | |
result=$? | |
if [ "$result" -ne 0 ]; then | |
echo "Build in base exited with status $result" | |
exit $result | |
fi | |
#EXERCISE_FOLDERS="ex101 ex201 ex401" | |
EXERCISE_FOLDERS="ex101" | |
for lesson in $EXERCISE_FOLDERS; do | |
pushd $lesson | |
./manualBuild.sh | |
result=$? | |
if [ "$result" -ne 0 ]; then | |
echo "Build in $lesson exited with status $result" | |
exit $result | |
fi | |
popd | |
done | |
if [[ "$OSTYPE" == "darwin"* ]]; then | |
say full build complete | |
fi | |
exit $result |