Skip to content

Commit 82631b1

Browse files
jlind23mergify[bot]
authored andcommittedMar 6, 2025·
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 (cherry picked from commit 20c2254) # Conflicts: # .buildkite/pipeline.yml # .buildkite/scripts/common.sh
1 parent 3814c05 commit 82631b1

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
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

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

33
env:
4+
<<<<<<< HEAD
45
SETUP_GVM_VERSION: "v0.5.0"
6+
=======
7+
>>>>>>> 20c2254 (Update pipeline.package.mbp.yml (#4555))
58
DOCKER_COMPOSE_VERSION: "1.25.5"
69
GO_AGENT_IMAGE: "golang:${GO_VERSION}"
710

‎.buildkite/scripts/common.sh

+5
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,12 @@ with_go() {
4343
echo "Setting up the Go environment..."
4444
create_workspace
4545
check_platform_architeture
46+
<<<<<<< HEAD
4647
retry 5 curl -sL -o ${WORKSPACE}/gvm "https://github.com/andrewkroh/gvm/releases/download/${SETUP_GVM_VERSION}/gvm-${platform_type_lowercase}-${arch_type}"
48+
=======
49+
SETUP_GVM_VERSION=v0.5.2
50+
retry 5 curl -sL -o ${WORKSPACE}/gvm "https://github.com/andrewkroh/gvm/releases/download/${SETUP_GVM_VERSION}/gvm-${platform_type}-${arch_type}"
51+
>>>>>>> 20c2254 (Update pipeline.package.mbp.yml (#4555))
4752
chmod +x ${WORKSPACE}/gvm
4853
eval "$(gvm $(cat .go-version))"
4954
go version

0 commit comments

Comments
 (0)
Please sign in to comment.