mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
This will help with CI for ARMHF Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
16 lines
244 B
Makefile
16 lines
244 B
Makefile
.PHONY: build build-gateway test-ci
|
|
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))
|