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

QX-337: QG pipeline runs should not skip intermediate builds #3100

Merged
merged 2 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .buildkite/pipeline.fleet-server-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ steps:
- label: ":pipeline::grey_question::seedling: Trigger service tests for ${ENVIRONMENT}"
command: "make -C /agent run-environment-tests"
agents:
image: "docker.elastic.co/ci-agent-images/quality-gate-seedling:0.0.2"
image: "docker.elastic.co/ci-agent-images/quality-gate-seedling:0.0.3"

notify:
- slack: "${TEAM_CHANNEL}"
if: build.branch == "main" && build.state == "failed"
if: build.branch == "main" && build.state == "failed"
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@

steps:
- label: ":pipeline::rocket::seedling: Trigger control-plane e2e tests"
if: build.env("ENVIRONMENT") == "production-canary"
trigger: "ess-k8s-production-e2e-tests" # https://buildkite.com/elastic/ess-k8s-production-e2e-tests
build:
env:
REGION_ID: aws-us-east-1
NAME_PREFIX: ci_test_fleet-promotion_
message: "${BUILDKITE_MESSAGE} (triggered by pipeline.tests-production-canary.yaml)"

- label: ":cookie: 1h bake period before continuing promotion"
if: build.env("ENVIRONMENT") == "production-canary"
command: "sleep 3600"
1 change: 1 addition & 0 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ spec:
repository: elastic/fleet-server
pipeline_file: .buildkite/pipeline.fleet-server-tests.yaml
branch_configuration: "main"
skip_intermediate_builds: false
provider_settings:
build_pull_requests: false
trigger_mode: none
Expand Down
Loading