13 lines
352 B
Bash
Executable File
13 lines
352 B
Bash
Executable File
#!/bin/sh -x
|
|
set -e
|
|
|
|
# My FAAS is arm64, so need to install this to cross-compile
|
|
docker run --rm --privileged \
|
|
multiarch/qemu-user-static \
|
|
--reset -p yes
|
|
|
|
# docker run --rm --privileged aptman/qus -s -- -p aarch64
|
|
|
|
faas-cli publish -f functions.yml --platforms linux/arm64 --build-arg 'TEST_ENABLED=false' $*
|
|
faas-cli deploy -f functions.yml $*
|