From 2dfbd0b47c1327f984f8505f9ab05f101a480fe5 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 3 Jun 2025 16:15:42 +0100 Subject: [PATCH] build: build with exactly go1.24.0 for test FIXME DO NOT MERGE --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1a81d1d2..9e1e3efc1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: include: - job_name: linux os: ubuntu-latest - go: '>=1.23.0-rc.1' + go: '1.24.0' gotags: cmount build_flags: '-include "^linux/"' check: true @@ -42,14 +42,14 @@ jobs: - job_name: linux_386 os: ubuntu-latest - go: '>=1.23.0-rc.1' + go: '1.24.0' goarch: 386 gotags: cmount quicktest: true - job_name: mac_amd64 os: macos-latest - go: '>=1.23.0-rc.1' + go: '1.24.0' gotags: 'cmount' build_flags: '-include "^darwin/amd64" -cgo' quicktest: true @@ -58,14 +58,14 @@ jobs: - job_name: mac_arm64 os: macos-latest - go: '>=1.23.0-rc.1' + go: '1.24.0' gotags: 'cmount' build_flags: '-include "^darwin/arm64" -cgo -macos-arch arm64 -cgo-cflags=-I/usr/local/include -cgo-ldflags=-L/usr/local/lib' deploy: true - job_name: windows os: windows-latest - go: '>=1.23.0-rc.1' + go: '1.24.0' gotags: cmount cgo: '0' build_flags: '-include "^windows/"' @@ -75,7 +75,7 @@ jobs: - job_name: other_os os: ubuntu-latest - go: '>=1.23.0-rc.1' + go: '1.24.0' build_flags: '-exclude "^(windows/|darwin/|linux/)"' compile_all: true deploy: true @@ -225,7 +225,7 @@ jobs: id: setup-go uses: actions/setup-go@v5 with: - go-version: '>=1.23.0-rc.1' + go-version: '1.24.0' check-latest: true cache: false @@ -299,7 +299,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '>=1.23.0-rc.1' + go-version: '1.24.0' - name: Set global environment variables shell: bash