Created
February 4, 2016 22:00
-
-
Save ghostbar/530e33ac6b3ee6d4d510 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
declare versions="versions/armv7l/resnullius-edge/options" | |
push() { | |
[[ "$NO_PUSH" ]] && return 0 | |
declare build_files="$1" | |
for file in $build_files; do | |
( | |
source "$file" | |
TAGS="$TAGS" upload.bash | |
exit 0 | |
) | |
done | |
} | |
pushd $HOME/Code/docker/docker-alpine | |
./orchestrator build "$versions" && \ | |
./orchestrator test "$versions" && \ | |
push "$versions" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment