Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .buildkite/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ notify:
if: "build.state != 'passed'"

env:
PLATFORMS: "darwin/amd64 linux/386 linux/amd64 windows/386 windows/amd64"
IMAGE_UBUNTU_X86_64: "family/core-ubuntu-2004"
IMAGE_UBUNTU_ARM_64: "core-ubuntu-2004-aarch64"
BEAT_DOC_BRANCH: "7.x"
Expand Down
1 change: 0 additions & 1 deletion .buildkite/scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ PLATFORMS=''
PACKAGES=''
if [[ ${PLATFORM_TYPE} == "arm" || ${PLATFORM_TYPE} == "aarch64" ]]; then
PLATFORMS='linux/arm64'
PACKAGES='docker'
fi

Comment on lines 11 to 12

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PLATFORMS was defaulted, henve the BK env variables was not working as expected. Avoid using the script but honour the env variables defined in the Buildkite pipeline itself.

MAKE_GOAL=release-manager-snapshot
Expand Down