Created
August 24, 2018 07:45
-
-
Save alexellis/95280199b4397c9c31e8d3edbaebb60f to your computer and use it in GitHub Desktop.
Revisions
-
alexellis created this gist
Aug 24, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ #!/bin/bash declare -a repos=("faas" "faas-swarm" "nats-queue-worker" "faas-netes") HERE=`pwd` rm -rf staging || : mkdir -p staging for i in "${repos[@]}" do cd $HERE echo "$i" git clone https://github.com/openfaas/$i ./staging/$i cd ./staging/$i pwd export TAG=$(git describe --abbrev=0 --tags) echo "Latest release: $TAG" make ci-armhf-build ci-armhf-push done