Skip to content

Commit

Permalink
Add armhf build steps
Browse files Browse the repository at this point in the history
This will help with CI for ARMHF

Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
  • Loading branch information
alexellis committed Aug 23, 2018
1 parent 91b6c24 commit 64e7de4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Expand Up @@ -7,5 +7,9 @@ build-gateway:
(cd gateway; ./build.sh latest-dev)
test-ci:
./contrib/ci.sh
ci-armhf:
(cd gateway; ./build.sh $(TAG)-armhf)

ci-armhf-build:
(cd gateway; ./build.sh $(TAG))

ci-armhf-push:
(cd gateway; ./push.sh $(TAG))
23 changes: 23 additions & 0 deletions gateway/push.sh
@@ -0,0 +1,23 @@
#!/bin/sh
set -e

export arch=$(uname -m)

export eTAG="latest-dev"

if [ "$arch" = "armv7l" ] ; then
eTAG="latest-armhf-dev"
fi

echo "$1"
if [ "$1" ] ; then
eTAG=$1
if [ "$arch" = "armv7l" ] ; then
eTAG="$1-armhf"
fi
fi

echo Pushing openfaas/gateway:$eTAG

docker push openfaas/gateway:$eTAG

0 comments on commit 64e7de4

Please sign in to comment.