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
+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