Skip to content
Snippets Groups Projects
Unverified Commit 5ac05f79 authored by Alex Ellis's avatar Alex Ellis Committed by GitHub
Browse files

Create publish-armhf.sh

parent 3b83c9e6
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
declare -a repos=("openfaas-incubator/faas-idler" "openfaas/faas" "openfaas/faas-swarm" "openfaas/nats-queue-worker" "openfaas/faas-netes" "openfaas/faas-cli")
HERE=`pwd`
#if [ ! -z "$CACHED" ]; then
rm -rf staging || :
mkdir -p staging/openfaas
mkdir -p staging/openfaas-incubator
#fi
for i in "${repos[@]}"
do
cd $HERE
echo "$i"
git clone https://github.com/$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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment