mirror of
https://github.com/openfaas/faas.git
synced 2025-06-24 15:53:26 +00:00
12 lines
195 B
Makefile
12 lines
195 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:
|
|
(cd gateway; ./build.sh $(TAG)-armhf)
|