Update ci.sh

This commit is contained in:
Alex Ellis
2017-09-25 21:17:35 +01:00
committed by GitHub
parent 0ce5a08690
commit 8f0acf7301

View File

@ -8,17 +8,17 @@ cd ..
echo $GOPATH
mkdir -p $GOPATH/go/src/github.com/openfaas/
cp -r faas $GOPATH/go/src/github.com/openfaas/
mkdir -p $GOPATH/src/github.com/openfaas/
cp -r faas $GOPATH/src/github.com/openfaas/
git clone https://github.com/openfaas/certify-incubator
cp -r certify-incubator $GOPATH/go/src/github.com/openfaas/
cp -r certify-incubator $GOPATH/src/github.com/openfaas/
cd $GOPATH/go/src/github.com/openfaas/faas/ && \
cd $GOPATH/src/github.com/openfaas/faas/gateway/tests/integration && \
go test -v
cd $GOPATH/go/src/github.com/openfaas/certify-incubator && \
cd $GOPATH/src/github.com/openfaas/certify-incubator && \
make test
exit 0