File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105
105
# This tests the latest supported LLVM version when linking against system
106
106
# libraries.
107
107
docker :
108
- - image : golang:1.25rc2 -bullseye
108
+ - image : golang:1.25rc3 -bullseye
109
109
steps :
110
110
- test-linux :
111
111
llvm : " 20"
Original file line number Diff line number Diff line change 39
39
- name : Install Go
40
40
uses : actions/setup-go@v5
41
41
with :
42
- go-version : ' 1.25.0-rc.2 '
42
+ go-version : ' 1.25.0-rc.3 '
43
43
cache : true
44
44
- name : Restore LLVM source cache
45
45
uses : actions/cache/restore@v4
@@ -134,7 +134,7 @@ jobs:
134
134
- name : Install Go
135
135
uses : actions/setup-go@v5
136
136
with :
137
- go-version : ' 1.25.0-rc.2 '
137
+ go-version : ' 1.25.0-rc.3 '
138
138
cache : true
139
139
- name : Build TinyGo (LLVM ${{ matrix.version }})
140
140
run : go install -tags=llvm${{ matrix.version }}
Original file line number Diff line number Diff line change 18
18
# statically linked binary.
19
19
runs-on : ubuntu-latest
20
20
container :
21
- image : golang:1.25rc2 -alpine
21
+ image : golang:1.25rc3 -alpine
22
22
outputs :
23
23
version : ${{ steps.version.outputs.version }}
24
24
steps :
@@ -137,7 +137,7 @@ jobs:
137
137
- name : Install Go
138
138
uses : actions/setup-go@v5
139
139
with :
140
- go-version : ' 1.25.0-rc.2 '
140
+ go-version : ' 1.25.0-rc.3 '
141
141
cache : true
142
142
- name : Install wasmtime
143
143
uses : bytecodealliance/actions/wasmtime/setup@v1
@@ -181,7 +181,7 @@ jobs:
181
181
- name : Install Go
182
182
uses : actions/setup-go@v5
183
183
with :
184
- go-version : ' 1.25.0-rc.2 '
184
+ go-version : ' 1.25.0-rc.3 '
185
185
cache : true
186
186
- name : Install Node.js
187
187
uses : actions/setup-node@v4
@@ -298,7 +298,7 @@ jobs:
298
298
- name : Install Go
299
299
uses : actions/setup-go@v5
300
300
with :
301
- go-version : ' 1.25.0-rc.2 '
301
+ go-version : ' 1.25.0-rc.3 '
302
302
cache : true
303
303
- name : Restore LLVM source cache
304
304
uses : actions/cache/restore@v4
Original file line number Diff line number Diff line change 41
41
- name : Install Go
42
42
uses : actions/setup-go@v5
43
43
with :
44
- go-version : ' 1.25.0-rc.2 '
44
+ go-version : ' 1.25.0-rc.3 '
45
45
cache : true
46
46
- name : Restore cached LLVM source
47
47
uses : actions/cache/restore@v4
@@ -147,7 +147,7 @@ jobs:
147
147
- name : Install Go
148
148
uses : actions/setup-go@v5
149
149
with :
150
- go-version : ' 1.25.0-rc.2 '
150
+ go-version : ' 1.25.0-rc.3 '
151
151
cache : true
152
152
- name : Download TinyGo build
153
153
uses : actions/download-artifact@v4
@@ -177,7 +177,7 @@ jobs:
177
177
- name : Install Go
178
178
uses : actions/setup-go@v5
179
179
with :
180
- go-version : ' 1.25.0-rc.2 '
180
+ go-version : ' 1.25.0-rc.3 '
181
181
cache : true
182
182
- name : Download TinyGo build
183
183
uses : actions/download-artifact@v4
@@ -213,7 +213,7 @@ jobs:
213
213
- name : Install Go
214
214
uses : actions/setup-go@v5
215
215
with :
216
- go-version : ' 1.25.0-rc.2 '
216
+ go-version : ' 1.25.0-rc.3 '
217
217
cache : true
218
218
- name : Download TinyGo build
219
219
uses : actions/download-artifact@v4
Original file line number Diff line number Diff line change 1
1
# tinygo-llvm stage obtains the llvm source for TinyGo
2
- FROM golang:1.25rc2 AS tinygo-llvm
2
+ FROM golang:1.25rc3 AS tinygo-llvm
3
3
4
4
RUN apt-get update && \
5
5
apt-get install -y apt-utils make cmake clang-15 ninja-build && \
@@ -33,7 +33,7 @@ RUN cd /tinygo/ && \
33
33
34
34
# tinygo-compiler copies the compiler build over to a base Go container (without
35
35
# all the build tools etc).
36
- FROM golang:1.25rc2 AS tinygo-compiler
36
+ FROM golang:1.25rc3 AS tinygo-compiler
37
37
38
38
# Copy tinygo build.
39
39
COPY --from=tinygo-compiler-build /tinygo/build/release/tinygo /tinygo
You can’t perform that action at this time.
0 commit comments