chore: update all CI builds to test Go 1.25rc3

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2025-08-07 08:56:52 +02:00
committed by Ron Evans
parent b33b6ce293
commit 91234060be
5 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ jobs:
# This tests the latest supported LLVM version when linking against system
# libraries.
docker:
- image: golang:1.25rc2-bullseye
- image: golang:1.25rc3-bullseye
steps:
- test-linux:
llvm: "20"
+2 -2
View File
@@ -39,7 +39,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Restore LLVM source cache
uses: actions/cache/restore@v4
@@ -134,7 +134,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Build TinyGo (LLVM ${{ matrix.version }})
run: go install -tags=llvm${{ matrix.version }}
+4 -4
View File
@@ -18,7 +18,7 @@ jobs:
# statically linked binary.
runs-on: ubuntu-latest
container:
image: golang:1.25rc2-alpine
image: golang:1.25rc3-alpine
outputs:
version: ${{ steps.version.outputs.version }}
steps:
@@ -137,7 +137,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Install wasmtime
uses: bytecodealliance/actions/wasmtime/setup@v1
@@ -181,7 +181,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Install Node.js
uses: actions/setup-node@v4
@@ -298,7 +298,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Restore LLVM source cache
uses: actions/cache/restore@v4
+4 -4
View File
@@ -41,7 +41,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Restore cached LLVM source
uses: actions/cache/restore@v4
@@ -147,7 +147,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Download TinyGo build
uses: actions/download-artifact@v4
@@ -177,7 +177,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Download TinyGo build
uses: actions/download-artifact@v4
@@ -213,7 +213,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0-rc.2'
go-version: '1.25.0-rc.3'
cache: true
- name: Download TinyGo build
uses: actions/download-artifact@v4
+2 -2
View File
@@ -1,5 +1,5 @@
# tinygo-llvm stage obtains the llvm source for TinyGo
FROM golang:1.25rc2 AS tinygo-llvm
FROM golang:1.25rc3 AS tinygo-llvm
RUN apt-get update && \
apt-get install -y apt-utils make cmake clang-15 ninja-build && \
@@ -33,7 +33,7 @@ RUN cd /tinygo/ && \
# tinygo-compiler copies the compiler build over to a base Go container (without
# all the build tools etc).
FROM golang:1.25rc2 AS tinygo-compiler
FROM golang:1.25rc3 AS tinygo-compiler
# Copy tinygo build.
COPY --from=tinygo-compiler-build /tinygo/build/release/tinygo /tinygo