Skip to content
This repository was archived by the owner on May 31, 2019. It is now read-only.

Checkout the according tag of the Home repo #41

Merged
merged 1 commit into from
Mar 13, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/run-with-all-tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -e # Exit immediately upon failure
for tag in `.ci/find-tags.sh $1`; do
TAG=${IMAGE}:${tag}
BRANCH=master
if [[ ${tag} == "nightly" ]]; then BRANCH=dev; fi
if [[ ${tag} == "nightly" ]]; then BRANCH=dev; else BRANCH=tags/v${tag} ; fi
echo "[CI] ----------------------------------"
echo "[CI] Verifying '$2' app with '$TAG'"
.ci/run-app.sh $TAG $2 $BRANCH
Expand Down