Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ghostbar/530e33ac6b3ee6d4d510 to your computer and use it in GitHub Desktop.
Save ghostbar/530e33ac6b3ee6d4d510 to your computer and use it in GitHub Desktop.
#!/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