Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[buildkite] Enable passing pipeline tests in buildkite pipeline #4275

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 112 additions & 56 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,21 +90,37 @@ steps:
- |-
make clean install-vendor-m3 test-base
<<: *common
# - name: "Big Unit %n"
# command: make clean install-vendor-m3 test-big-base
# parallelism: 2
# plugins:
# docker-compose#v2.5.1:
# run: app
# workdir: /go/src/github.com/m3db/m3
# <<: *common
# - name: "Services, Tools"
# command: make clean install-vendor-m3 services tools
# plugins:
# docker-compose#v2.5.1:
# run: app
# workdir: /go/src/github.com/m3db/m3
# <<: *common
- name: "Big Unit %n"
parallelism: 2
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
kubernetes:
<<: *kubernetes
podSpec:
<<: *podSpec
containers:
- <<: *commandContainer
command:
- |-
make clean install-vendor-m3 test-big-base
<<: *common
- name: "Services, Tools"
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
kubernetes:
<<: *kubernetes
podSpec:
<<: *podSpec
containers:
- <<: *commandContainer
command:
- |-
make clean install-vendor-m3 services tools
<<: *common
# - name: "Lint"
# command: make clean lint
# env:
Expand All @@ -124,23 +140,39 @@ steps:
# gopath-checkout#v1.0.1:
# import: github.com/m3db/m3
# <<: *common
# - label: "M3 Cluster Integration Tests"
# command: make clean test-ci-cluster-integration
# env:
# CGO_ENABLED: 0
# GIMME_GO_VERSION: 1.18.x
# plugins:
# gopath-checkout#v1.0.1:
# import: github.com/m3db/m3
# <<: *common
# - label: "M3 Cluster Integration Test Harness Tests"
# command: make clean test-ci-test-harness
# skip: "NB(nate): temporarily disabling to resolve some tests flakes"
# plugins:
# docker-compose#v2.5.1:
# run: app
# workdir: /go/src/github.com/m3db/m3
# <<: *common
- label: "M3 Cluster Integration Tests"
env:
CGO_ENABLED: 0
GIMME_GO_VERSION: 1.18.x
plugins:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
kubernetes:
<<: *kubernetes
podSpec:
<<: *podSpec
containers:
- <<: *commandContainer
command:
- |-
make clean test-ci-cluster-integration
<<: *common
- label: "M3 Cluster Integration Test Harness Tests"
skip: "NB(nate): temporarily disabling to resolve some tests flakes"
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
kubernetes:
<<: *kubernetes
podSpec:
<<: *podSpec
containers:
- <<: *commandContainer
command:
- |-
make clean test-ci-test-harness
<<: *common
# - name: "Prometheus compatibility (:docker:)"
# command: make clean install-vendor-m3 docker-compatibility-test
# parallelism: 1
Expand All @@ -167,30 +199,54 @@ steps:
# run: app
# workdir: /go/src/github.com/m3db/m3
# <<: *common
# - name: "Integration (aggregator TCP client) %n"
# parallelism: 1
# command: make clean install-vendor-m3 test-ci-integration-aggregator aggregator_client=tcp
# plugins:
# docker-compose#v2.5.1:
# run: app
# workdir: /go/src/github.com/m3db/m3
# <<: *common
# - name: "Integration (aggregator m3msg client) %n"
# parallelism: 1
# command: make clean install-vendor-m3 test-ci-integration-aggregator aggregator_client=m3msg
# plugins:
# docker-compose#v2.5.1:
# run: app
# workdir: /go/src/github.com/m3db/m3
# <<: *common
# - label: "Integration (m3em, cluster, msg, metrics) %n"
# parallelism: 4
# command: make clean install-vendor-m3 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: "Integration (aggregator TCP client) %n"
parallelism: 1
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
kubernetes:
<<: *kubernetes
podSpec:
<<: *podSpec
containers:
- <<: *commandContainer
command:
- |-
make clean install-vendor-m3 test-ci-integration-aggregator aggregator_client=tcp
<<: *common
- name: "Integration (aggregator m3msg client) %n"
parallelism: 1
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
kubernetes:
<<: *kubernetes
podSpec:
<<: *podSpec
containers:
- <<: *commandContainer
command:
- |-
make clean install-vendor-m3 test-ci-integration-aggregator aggregator_client=m3msg
<<: *common
- label: "Integration (m3em, cluster, msg, metrics) %n"
parallelism: 4
plugins:
docker-compose#v2.5.1:
run: app
workdir: /go/src/github.com/m3db/m3
kubernetes:
<<: *kubernetes
podSpec:
<<: *podSpec
containers:
- <<: *commandContainer
command:
- |-
make clean install-vendor-m3 test-ci-integration-m3em test-ci-integration-cluster test-ci-integration-msg test-ci-integration-metrics
<<: *common
# - name: "Documentation tests"
# command: make clean install-vendor-m3 docs-test
# env:
Expand Down