mirror of
https://github.com/openfaas/faas.git
synced 2025-06-16 12:16:47 +00:00
25 lines
461 B
Bash
25 lines
461 B
Bash
#!/bin/bash
|
|
|
|
docker swarm init --advertise-addr=$(hostname -i)
|
|
|
|
./deploy_stack.sh
|
|
|
|
cd ..
|
|
|
|
echo $GOPATH
|
|
|
|
mkdir -p $GOPATH/go/src/github.com/openfaas/
|
|
cp -r faas $GOPATH/go/src/github.com/openfaas/
|
|
|
|
git clone https://github.com/openfaas/certify-incubator
|
|
|
|
cp -r certify-incubator $GOPATH/go/src/github.com/openfaas/
|
|
|
|
cd $GOPATH/go/src/github.com/openfaas/faas/ && \
|
|
go test -v
|
|
|
|
cd $GOPATH/go/src/github.com/openfaas/certify-incubator && \
|
|
make test
|
|
|
|
exit 0
|