Skip to content

Commit 43818ad

Browse files
mrodmagithomas
authored andcommitted
[CI] Update GVM version (elastic#15691)
Update to the latest GVM version (v0.6.0) to avoid issues downloading Golang versions.
1 parent ff041f2 commit 43818ad

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.buildkite/pipeline.publish.yml

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

33
env:
4-
SETUP_GVM_VERSION: "v0.5.2"
4+
SETUP_GVM_VERSION: "v0.6.0"
55
LINUX_AGENT_IMAGE: "golang:${GO_VERSION}"
66
DOCKER_COMPOSE_VERSION: "v2.24.1"
77
DOCKER_VERSION: "false"

.buildkite/pipeline.schedule-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: integrations-schedule-daily
33

44
env:
5-
SETUP_GVM_VERSION: "v0.5.2"
5+
SETUP_GVM_VERSION: "v0.6.0"
66
LINUX_AGENT_IMAGE: "golang:${GO_VERSION}"
77

88
# The pipeline is triggered by the scheduler every day

.buildkite/pipeline.schedule-weekly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: integrations-schedule-weekly
33

44
env:
5-
SETUP_GVM_VERSION: "v0.5.2"
5+
SETUP_GVM_VERSION: "v0.6.0"
66
LINUX_AGENT_IMAGE: "golang:${GO_VERSION}"
77

88
# The pipeline is triggered by the scheduler every week

.buildkite/pipeline.serverless.yml

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

33
env:
4-
SETUP_GVM_VERSION: "v0.5.2"
4+
SETUP_GVM_VERSION: "v0.6.0"
55
LINUX_AGENT_IMAGE: "golang:${GO_VERSION}"
66
DOCKER_COMPOSE_VERSION: "v2.24.1"
77
DOCKER_VERSION: "false" # not required to set since system tests are not running yet

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
22
env:
3-
SETUP_GVM_VERSION: "v0.5.2"
3+
SETUP_GVM_VERSION: "v0.6.0"
44
DOCKER_COMPOSE_VERSION: "v2.24.1"
55
DOCKER_VERSION: "26.1.2"
66
KIND_VERSION: 'v0.27.0'

.buildkite/scripts/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ with_go() {
114114
echo "GVM ${SETUP_GVM_VERSION} (platform ${platform_type_lowercase} arch ${arch_type}"
115115
retry 5 curl -sL -o "${BIN_FOLDER}/gvm" "https://github.com/andrewkroh/gvm/releases/download/${SETUP_GVM_VERSION}/gvm-${platform_type_lowercase}-${arch_type}"
116116
chmod +x "${BIN_FOLDER}/gvm"
117-
eval "$(gvm --url=https://go.dev/dl "$(cat .go-version)")"
117+
eval "$(gvm "$(cat .go-version)")"
118118
go version
119119
which go
120120
PATH="${PATH}:$(go env GOPATH):$(go env GOPATH)/bin"

0 commit comments

Comments
 (0)