Skip to content

Commit

Permalink
undo debug
Browse files Browse the repository at this point in the history
  • Loading branch information
schallert committed Feb 21, 2020
1 parent 8f8f832 commit 9f05f58
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 2 deletions.
95 changes: 95 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,50 @@ common: &common
manual: true

steps:
- name: "Codegen"
command: make clean install-vendor-m3 test-all-gen
env:
CGO_ENABLED: 0
GIMME_GO_VERSION: 1.12.x
plugins:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
<<: *common
- name: "Unit %n"
command: make clean install-vendor-m3 test-ci-unit
parallelism: 4
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
<<: *common
- name: "Big Unit %n"
command: make clean install-vendor-m3 test-ci-big-unit
parallelism: 2
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
<<: *common
- name: "Services, Tools, Metalint"
command: make clean install-vendor-m3 services tools metalint
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
<<: *common
- name: "Integration (:docker:)"
command: make clean install-vendor-m3 docker-integration-test
parallelism: 2
env:
CGO_ENABLED: 0
GIMME_GO_VERSION: 1.13.x
plugins:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
<<: *common
- name: "Prometheus compatibility (:docker:)"
command: make clean install-vendor-m3 docker-compatibility-test
parallelism: 1
env:
CGO_ENABLED: 0
Expand All @@ -20,3 +62,56 @@ steps:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
<<: *common
- name: "Integration (dbnode Recently Read) %n"
parallelism: 2
command: make clean install-vendor-m3 test-ci-integration-dbnode cache_policy=recently_read
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
<<: *common
- name: "Integration (dbnode LRU) %n"
parallelism: 2
command: make clean install-vendor-m3 test-ci-integration-dbnode cache_policy=lru
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
<<: *common
- label: "Integration (collector, aggregator, m3em, cluster, msg, metrics) %n"
parallelism: 4
command: make clean install-vendor-m3 test-ci-integration-collector test-ci-integration-aggregator test-ci-integration-m3em test-ci-integration-cluster test-ci-integration-msg test-ci-integration-metrics
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
<<: *common
- name: "Documentation tests"
command: make clean install-vendor-m3 docs-test
env:
CGO_ENABLED: 0
GIMME_GO_VERSION: 1.12.x
plugins:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
<<: *common
- label: "FOSSA license scan"
command: make clean install-vendor-m3 fossa
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
env:
- FOSSA_API_KEY
<<: *common
- name: "Check for docker and docs builds :docker: :books:"
commands:
- ".ci/docker/check_do_docker.sh"
- ".buildkite/scripts/check_do_docs.sh"
agents:
queue: init
timeout_in_minutes: 10
retry:
automatic:
limit: 1
manual: true
2 changes: 0 additions & 2 deletions scripts/docker-integration-tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ if ! command -v nc && [[ "$BUILDKITE" == "true" ]]; then
trap cleanup_nc EXIT
fi

command -v nc

scripts/docker-integration-tests/setup.sh

NUM_TESTS=${#TESTS[@]}
Expand Down

0 comments on commit 9f05f58

Please sign in to comment.