From f46e0e45f1fc14063d0f4e5dc8e59490994e596e Mon Sep 17 00:00:00 2001 From: Takeshi Yoneda Date: Tue, 2 Jul 2024 12:51:41 -0700 Subject: [PATCH 1/4] ci: tests with Go 1.23rc1 Signed-off-by: Takeshi Yoneda --- .github/workflows/commit.yaml | 2 ++ .github/workflows/examples.yaml | 1 + .github/workflows/integration.yaml | 1 + 3 files changed, 4 insertions(+) diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml index f3b4922c95..9e486717ae 100644 --- a/.github/workflows/commit.yaml +++ b/.github/workflows/commit.yaml @@ -71,6 +71,7 @@ jobs: - os: macos-14 arch: arm64 go-version: + - "1.23.0-rc.1" # Test the pending next version - "1.22" # Current Go version - "1.20" # Floor Go version of wazero (current - 2) @@ -112,6 +113,7 @@ jobs: fail-fast: false # don't fail fast as sometimes failures are arch/OS specific matrix: # Use versions consistent with wazero's Go support policy. go-version: + - "1.23.0-rc.1" # Test the pending next version - "1.22" # Current Go version - "1.20" # Floor Go version of wazero (current - 2) arch: diff --git a/.github/workflows/examples.yaml b/.github/workflows/examples.yaml index 36fecedb9b..d75571ea4d 100644 --- a/.github/workflows/examples.yaml +++ b/.github/workflows/examples.yaml @@ -34,6 +34,7 @@ jobs: strategy: matrix: # Use versions consistent with TinyGo. go-version: + - "1.23.0-rc.1" # Test the pending next version - "1.22" - "1.20" diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 395e2d94d5..6df670babc 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -278,6 +278,7 @@ jobs: go-version: - "1.21" - "1.22" + - "1.23.0-rc.1" # Test the pending next version steps: - id: setup-go From c9af79b5bb2ab465bfaf122c7abbd7862c9224af Mon Sep 17 00:00:00 2001 From: Takeshi Yoneda Date: Tue, 2 Jul 2024 12:55:49 -0700 Subject: [PATCH 2/4] no tinygo Signed-off-by: Takeshi Yoneda --- .github/workflows/examples.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/examples.yaml b/.github/workflows/examples.yaml index d75571ea4d..36fecedb9b 100644 --- a/.github/workflows/examples.yaml +++ b/.github/workflows/examples.yaml @@ -34,7 +34,6 @@ jobs: strategy: matrix: # Use versions consistent with TinyGo. go-version: - - "1.23.0-rc.1" # Test the pending next version - "1.22" - "1.20" From 154a80ccbadd15f9f81a6e6ca7b1f7a227994563 Mon Sep 17 00:00:00 2001 From: Takeshi Yoneda Date: Mon, 8 Jul 2024 11:05:32 -0700 Subject: [PATCH 3/4] @evacchi did it Signed-off-by: Takeshi Yoneda --- internal/integration_test/stdlibs/bench_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/integration_test/stdlibs/bench_test.go b/internal/integration_test/stdlibs/bench_test.go index 544cef8f3c..2c5f8634da 100644 --- a/internal/integration_test/stdlibs/bench_test.go +++ b/internal/integration_test/stdlibs/bench_test.go @@ -103,7 +103,7 @@ var ( args = append(args, "-test.skip=TestRenameCaseDifference/dir|"+ "TestDirFSPathsValid|TestDirFS|TestDevNullFile|"+ - "TestOpenError|TestSymlinkWithTrailingSlash") + "TestOpenError|TestSymlinkWithTrailingSlash|TestCopyFS") } c = c.WithArgs(args...) From 1665b640ed51f4e70c12a3fbf31d7815f65db735 Mon Sep 17 00:00:00 2001 From: Takeshi Yoneda Date: Wed, 17 Jul 2024 21:59:33 -0700 Subject: [PATCH 4/4] rc2 Signed-off-by: Takeshi Yoneda --- .github/workflows/commit.yaml | 4 ++-- .github/workflows/integration.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml index 9e486717ae..a31fe23115 100644 --- a/.github/workflows/commit.yaml +++ b/.github/workflows/commit.yaml @@ -71,7 +71,7 @@ jobs: - os: macos-14 arch: arm64 go-version: - - "1.23.0-rc.1" # Test the pending next version + - "1.23.0-rc.2" # Test the pending next version - "1.22" # Current Go version - "1.20" # Floor Go version of wazero (current - 2) @@ -113,7 +113,7 @@ jobs: fail-fast: false # don't fail fast as sometimes failures are arch/OS specific matrix: # Use versions consistent with wazero's Go support policy. go-version: - - "1.23.0-rc.1" # Test the pending next version + - "1.23.0-rc.2" # Test the pending next version - "1.22" # Current Go version - "1.20" # Floor Go version of wazero (current - 2) arch: diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 6df670babc..61c5158e32 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -278,7 +278,7 @@ jobs: go-version: - "1.21" - "1.22" - - "1.23.0-rc.1" # Test the pending next version + - "1.23.0-rc.2" # Test the pending next version steps: - id: setup-go