Skip to content
Snippets Groups Projects
circle.yml 3.1 KiB
Newer Older
Ethan Buchman's avatar
Ethan Buchman committed
  environment:
    GOPATH: $HOME/.go_workspace
    REPO: ${GOPATH}/src/github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}
    DOCKER_VERSION: 1.9.1
    DOCKER_MACHINE_VERSION: 0.6.0
    GO15VENDOREXPERIMENT: 1
    - git config --global user.email "billings@monax.io"
    - git config --global user.name "Billings the Bot"
    - rm -rf ${GOPATH%%:*}/src/github.com/${CIRCLE_PROJECT_USERNAME}
    - mkdir -p ${GOPATH%%:*}/src/github.com/${CIRCLE_PROJECT_USERNAME}
    - cp -r ${HOME}/${CIRCLE_PROJECT_REPONAME} ${GOPATH%%:*}/src/github.com/${CIRCLE_PROJECT_USERNAME}/.
Androlo's avatar
Androlo committed
dependencies:
  override:
    - sudo curl -L -o /usr/bin/docker http://s3-external-1.amazonaws.com/circle-downloads/docker-$DOCKER_VERSION-circleci; sudo chmod 0775 /usr/bin/docker; sudo usermod -a -G docker $USER; true
Silas Davis's avatar
Silas Davis committed
    - sudo apt-get update && sudo apt-get install -y libgmp3-dev
    - sudo apt-get install jq curl && go get github.com/Masterminds/glide
Silas Davis's avatar
Silas Davis committed
test:
Silas Davis's avatar
Silas Davis committed
    # Test the build target for burrow
    - echo "Build target burrow..." && cd $REPO && go install ./cmd/burrow && burrow --help
    # Test the build target for burrow-client
    - echo "Build target burrow-client..." && cd $REPO && go install ./client/cmd/burrow-client && burrow-client --help
Androlo's avatar
Androlo committed
  override:
    # We only wish to test our packages not vendored ones
    - echo "Running unit tests..." && cd $REPO && glide novendor | xargs go test -tags integration
    # - echo "Running integration tests..." && cd $REPO && "tests/circle_test.sh" # | tee $CIRCLE_ARTIFACTS/output.log; test ${PIPESTATUS[0]} -eq 0"
      - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS quay.io
      # build docker image and tag the image with the version
      - tests/build_tool.sh
      - docker push quay.io/monax/db
  release-0.16:
    branch: release-0.16
    commands:
      - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS quay.io
      # build docker image and tag the image with the version
      - docker push quay.io/monax/db
  develop:
    branch: develop
    commands:
      - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS quay.io
      # build docker image and tag the image with the version
      - tests/build_tool.sh
      - docker push quay.io/monax/db
  master:
    branch: master
    commands:
      - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS quay.io
      # build docker image and tag the image with ':latest'
      # builds on master are considered immutable so we do not push the version
      # tag to allow for hotfixes
      - tests/build_tool.sh latest
      - docker push quay.io/monax/db
  tagged-releases:
    tag: /v[0-9]+(\.[0-9]+)*/
    commands:
      - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS quay.io
      # build docker image and tag the image with the version;
      # once the commit is tagged the docker image for this version tag is
      # considered immutable.
      - tests/build_tool.sh
      - docker push quay.io/monax/db