Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| machine: | |
| services: | |
| - docker | |
| checkout: | |
| post: | |
| - git fetch --unshallow || true | |
| - git fetch --tags | |
| dependencies: | |
| override: | |
| - build/circle-deps.sh | |
| cache_directories: | |
| - ~/buildcache | |
| - ~/uicache | |
| test: | |
| override: | |
| - build/circle-test.sh | |
| deployment: | |
| docker: | |
| branch: master | |
| commands: | |
| - sed "s/<EMAIL>/$DOCKER_EMAIL/;s/<AUTH>/$DOCKER_AUTH/" < "resource/deploy_templates/.dockercfg.template" > ~/.dockercfg | |
| - | | |
| export VERSION=$(git describe || git rev-parse --short HEAD) | |
| echo "Deploying ${VERSION}..." | |
| if [ -n "$DOCKER_EMAIL" ]; then | |
| build/push-docker-deploy.sh | |
| fi | |
| - aws configure set region us-east-1 | |
| - build/build-static-binaries.sh | |
| - mkdir -p "${CIRCLE_ARTIFACTS}/acceptance_deploy" | |
| - time acceptance/acceptance.test -test.v -test.timeout 5m | |
| -i cockroachdb/cockroach -num-local 3 | |
| -l "${CIRCLE_ARTIFACTS}"/acceptance_deploy 2>&1 > | |
| "${CIRCLE_ARTIFACTS}/acceptance_deploy.log" | |
| - build/push-aws.sh |