From f71d570d8f8ef8b7ac4a72c60f044b7d7242a0b4 Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Wed, 29 Jan 2025 20:27:05 +0000 Subject: [PATCH] test/runtime: update go to 1.24-rc --- .buildkite/pipeline.yaml | 4 ++-- WORKSPACE | 1 - images/runtimes/{go1.22 => go1.24-rc}/Dockerfile.x86_64 | 2 +- test/runtimes/BUILD | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) rename images/runtimes/{go1.22 => go1.24-rc}/Dockerfile.x86_64 (87%) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 4132cfe20c..23891dbf3a 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -532,7 +532,7 @@ steps: - <<: *common <<: *docker label: ":golang: Go runtime tests" - command: make go1.22-runtime-tests RUNTIME_ARGS=--directfs + command: make go1.24-rc-runtime-tests RUNTIME_ARGS=--directfs parallelism: 10 agents: <<: *platform_specific_agents @@ -576,7 +576,7 @@ steps: - <<: *common <<: *docker label: ":golang: Go runtime tests (goferfs)" - command: make go1.22-runtime-tests RUNTIME_ARGS=--directfs=false + command: make go1.24-rc-runtime-tests RUNTIME_ARGS=--directfs=false parallelism: 10 if: build.branch == "master" agents: diff --git a/WORKSPACE b/WORKSPACE index 07306d8ac8..6c4782bd29 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -51,7 +51,6 @@ http_archive( "//tools:rules_go_symbols.patch", # Allow for patching of the go_sdk. "//tools:rules_go_sdk.patch", - "//tools:rules_go_facts.patch", "//tools:rules_cgo.patch", ], sha256 = "80a98277ad1311dacd837f9b16db62887702e9f1d1c4c9f796d0121a46c8e184", diff --git a/images/runtimes/go1.22/Dockerfile.x86_64 b/images/runtimes/go1.24-rc/Dockerfile.x86_64 similarity index 87% rename from images/runtimes/go1.22/Dockerfile.x86_64 rename to images/runtimes/go1.24-rc/Dockerfile.x86_64 index f75ea7b190..f263a49054 100644 --- a/images/runtimes/go1.22/Dockerfile.x86_64 +++ b/images/runtimes/go1.24-rc/Dockerfile.x86_64 @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24-rc # Compile the tests during build to save time during testing. ENV GOROOT=/usr/local/go diff --git a/test/runtimes/BUILD b/test/runtimes/BUILD index e62ff43a09..f74b64d455 100644 --- a/test/runtimes/BUILD +++ b/test/runtimes/BUILD @@ -7,7 +7,7 @@ package( ) runtime_test( - name = "go1.22", + name = "go1.24-rc", exclude_file = "exclude/go1.22.csv", lang = "go", shard_count = more_shards,