Skip to content

Commit

Permalink
Added DEV flag to snapshot. prepare-release-manager.sh staging param (#…
Browse files Browse the repository at this point in the history
…39217)

Added DEV flag to snapshot builds. Specified the workflow for prepare-release-manager.sh

Relates: elastic/ingest-dev#3095
  • Loading branch information
pazone committed Apr 26, 2024
1 parent 75baa69 commit d67ccbf
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .buildkite/packaging.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ steps:
- make beats-dashboards
env:
SNAPSHOT: true
DEV: true
artifact_paths:
- build/distributions/**/*

Expand All @@ -42,6 +43,9 @@ steps:
commands:
- make build/distributions/dependencies.csv
- make beats-dashboards
env:
SNAPSHOT: false
DEV: false
artifact_paths:
- build/distributions/**/*

Expand All @@ -53,6 +57,7 @@ steps:
env:
PLATFORMS: "${PLATFORMS}"
SNAPSHOT: true
DEV: true
command: ".buildkite/scripts/packaging/package-dra.sh {{matrix}}"
agents:
provider: gcp
Expand Down Expand Up @@ -82,6 +87,7 @@ steps:
PLATFORMS: "${PLATFORMS_ARM}"
PACKAGES: "docker"
SNAPSHOT: true
DEV: true
command: ".buildkite/scripts/packaging/package-dra.sh {{matrix}}"
agents:
provider: "aws"
Expand All @@ -103,7 +109,6 @@ steps:
- x-pack/packetbeat

- group: Packaging staging

key: packaging-staging
## Only for release
if: build.branch =~ /^\d+\.\d+$$/
Expand All @@ -112,6 +117,7 @@ steps:
env:
PLATFORMS: "${PLATFORMS}"
SNAPSHOT: false
DEV: false
command: ".buildkite/scripts/packaging/package-dra.sh {{matrix}}"
agents:
provider: gcp
Expand Down Expand Up @@ -141,6 +147,7 @@ steps:
PLATFORMS: "${PLATFORMS_ARM}"
PACKAGES: "docker"
SNAPSHOT: false
DEV: false
command: ".buildkite/scripts/packaging/package-dra.sh {{matrix}}"
agents:
provider: "aws"
Expand Down Expand Up @@ -175,7 +182,7 @@ steps:
- dashboards-snapshot
command: |
buildkite-agent artifact download "build/**/*" .
.buildkite/scripts/packaging/prepare-release-manager.sh
.buildkite/scripts/packaging/prepare-release-manager.sh snapshot
.buildkite/scripts/dra.sh
agents:
provider: gcp
Expand All @@ -193,7 +200,7 @@ steps:
- dashboards-staging
command: |
buildkite-agent artifact download "build/**" .
.buildkite/scripts/packaging/prepare-release-manager.sh
.buildkite/scripts/packaging/prepare-release-manager.sh staging
.buildkite/scripts/dra.sh
agents:
provider: gcp
Expand Down

0 comments on commit d67ccbf

Please sign in to comment.