aboutsummaryrefslogtreecommitdiff
path: root/.buildkite/pipeline.yml
blob: e39a8922cdfe974fe42bbed4081744180e485508 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
steps:
  - name: test
    id: test
    command: make docker-test

  - name: push
    branches: [master]
    depends_on: [test]
    command: |
      make docker-push \
        DOCKER_EXTRA_ARGS="-v ${HOME}/.docker:/root/.docker"