mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
24 lines
402 B
Makefile
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))
|