Update golang tests

PiperOrigin-RevId: 520069861
This commit is contained in:
Andrei Vagin
2023-03-28 10:39:56 -07:00
committed by gVisor bot
parent 05f88d6490
commit 3d1c4c113b
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -448,7 +448,7 @@ steps:
- <<: *common
<<: *docker
label: ":golang: Go runtime tests"
command: make RUNTIME_LOG_DIR=/tmp/$${BUILDKITE_JOB_ID} go1.16-runtime-tests
command: make RUNTIME_LOG_DIR=/tmp/$${BUILDKITE_JOB_ID} go1.20-runtime-tests
parallelism: 10
agents:
<<: *platform_specific_agents
@@ -1,4 +1,4 @@
FROM golang:1.16
FROM golang:1.20
# Compile the tests during build to save time during testing.
RUN ["go", "tool", "dist", "test", "-compile-only"]
+2 -2
View File
@@ -7,8 +7,8 @@ package(
)
runtime_test(
name = "go1.16",
exclude_file = "exclude/go1.16.csv",
name = "go1.20",
exclude_file = "exclude/go1.20.csv",
lang = "go",
shard_count = more_shards,
)