Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
28 lines (23 sloc)
500 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/ \ | |
#&& docker build --build-arg VERSION_TAG=${VERSION_TAG} --tag=tier/gte:full_demo-${VERSION_TAG} full-demo \ | |
pushd ex101 | |
./manualBuild.sh | |
popd | |
pushd ex201 | |
./manualBuild.sh | |
popd | |
# pushd ex211 | |
# ./manualBuild.sh | |
# popd | |
# | |
# pushd ex301 | |
# ./manualBuild.sh | |
# popd | |
pushd ex401 | |
./manualBuild.sh | |
popd | |
if [[ "$OSTYPE" == "darwin"* ]]; then | |
say full build complete | |
fi |