faas/Makefile
Radoslav Dimitrov 41b452849c Add a consistent ARM64 image build process
Signed-off-by: Radoslav Dimitrov <rdimitrow@gmail.com>
2019-01-16 09:09:41 +00:00

24 lines
402 B
Makefile

.PHONY: build build-gateway test-ci ci-armhf-build ci-armhf-push ci-arm64-build ci-arm64-push
TAG?=latest
build:
./build.sh
build-gateway:
(cd gateway; ./build.sh latest-dev)
test-ci:
./contrib/ci.sh
ci-armhf-build:
(cd gateway; ./build.sh $(TAG))
ci-armhf-push:
(cd gateway; ./push.sh $(TAG))
ci-arm64-build:
(cd gateway; ./build.sh $(TAG))
ci-arm64-push:
(cd gateway; ./push.sh $(TAG))