mirror of
https://github.com/openfaas/faas.git
synced 2025-06-15 11:46:46 +00:00
16 lines
240 B
Bash
16 lines
240 B
Bash
#!/bin/bash
|
|
|
|
docker swarm init --advertise-addr=$(hostname -i)
|
|
|
|
./deploy_stack.sh
|
|
|
|
cd gateway/tests/integration
|
|
go test -v
|
|
cd ../../../
|
|
|
|
git clone https://github.com/openfaas/certify-incubator
|
|
cd certify-incubator && \
|
|
make test
|
|
|
|
exit 0
|