Skip to content

Commit 20c2254

Browse files
authored
Update pipeline.package.mbp.yml (#4555)
GVM is unable to install Go 1.24.0 on main due to a missing fix that landed in 0.5.1
1 parent c2b8d66 commit 20c2254

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

.buildkite/pipeline.package.mbp.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name: "fleet server package mbp"
33
env:
44
REPO: 'fleet-server'
5-
SETUP_GVM_VERSION: 'v0.3.0'
65
DOCKER_REGISTRY: "docker.elastic.co"
76
IMAGE_UBUNTU_X86_64: "family/core-ubuntu-2004"
87
IMAGE_UBUNTU_ARM_64: "core-ubuntu-2004-aarch64"

.buildkite/pipeline.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
22

33
env:
4-
SETUP_GVM_VERSION: "v0.5.1"
54
DOCKER_COMPOSE_VERSION: "1.25.5"
65
DOCKER_REGISTRY: "docker.elastic.co"
76
DOCKER_IMAGE: "${DOCKER_REGISTRY}/observability-ci/fleet-server" # needs to rename for rollback

.buildkite/scripts/common.sh

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ with_go() {
4242
echo "Setting up the Go environment..."
4343
create_workspace
4444
check_platform_architeture
45+
SETUP_GVM_VERSION=v0.5.2
4546
retry 5 curl -sL -o ${WORKSPACE}/gvm "https://github.com/andrewkroh/gvm/releases/download/${SETUP_GVM_VERSION}/gvm-${platform_type}-${arch_type}"
4647
chmod +x ${WORKSPACE}/gvm
4748
eval "$(gvm $(cat .go-version))"

0 commit comments

Comments
 (0)