You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 21, 2021. It is now read-only.
- if [[ -z $GO111MODULE ]]; then go get github.com/onsi/ginkgo/ginkgo; fi
- if [[ -z $GO111MODULE ]]; then go get github.com/onsi/gomega/...; fi
- go get ./...
script:
- go test -v ./...
- if [[ $SHOULD_BUILD ]]; then docker build -f Dockerfile -t cooperaj/starling-coinjar:latest .; fi
- if [[ $SHOULD_BUILD ]] && [[ $ABSTRUSE_TAG != "null" ]]; then docker tag cooperaj/starling-coinjar:latest cooperaj/starling-coinjar:${ABSTRUSE_TAG}; fi
- if [[ $SHOULD_BUILD ]]; then docker build -f Dockerfile.armhf -t cooperaj/armhf-starling-coinjar:latest .; fi
- if [[ $SHOULD_BUILD ]] && [[ $ABSTRUSE_TAG != "null" ]]; then docker tag cooperaj/armhf-starling-coinjar:latest cooperaj/armhf-starling-coinjar:${ABSTRUSE_TAG}; fi
deploy:
- if [[ $SHOULD_DEPLOY ]]; then docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD; fi
- if [[ $SHOULD_DEPLOY ]]; then docker push cooperaj/starling-coinjar:latest; fi
- if [[ $SHOULD_DEPLOY ]] && [[ $ABSTRUSE_TAG != "null" ]]; then docker push cooperaj/starling-coinjar:${ABSTRUSE_TAG}; fi
- if [[ $SHOULD_DEPLOY ]]; then docker push cooperaj/armhf-starling-coinjar:latest; fi
- if [[ $SHOULD_DEPLOY ]] && [[ $ABSTRUSE_TAG != "null" ]]; then docker push cooperaj/armhf-starling-coinjar:${ABSTRUSE_TAG}; fi