File tree Expand file tree Collapse file tree 5 files changed +14
-23
lines changed Expand file tree Collapse file tree 5 files changed +14
-23
lines changed Original file line number Diff line number Diff line change @@ -105,16 +105,9 @@ jobs:
105
105
- test-linux :
106
106
llvm : " 15"
107
107
resource_class : large
108
- test-llvm16 -go122 :
108
+ test-llvm17 -go122 :
109
109
docker :
110
- - image : golang:1.22-rc-bullseye
111
- steps :
112
- - test-linux :
113
- llvm : " 16"
114
- resource_class : large
115
- test-llvm17-go121 :
116
- docker :
117
- - image : golang:1.21-bullseye
110
+ - image : golang:1.22-bullseye
118
111
steps :
119
112
- test-linux :
120
113
llvm : " 17"
@@ -126,7 +119,5 @@ workflows:
126
119
# This tests our lowest supported versions of Go and LLVM, to make sure at
127
120
# least the smoke tests still pass.
128
121
- test-llvm15-go118
129
- # This tests the upcoming Go 1.22 support.
130
- - test-llvm16-go122
131
122
# This tests LLVM 17 support when linking against system libraries.
132
- - test-llvm17-go121
123
+ - test-llvm17-go122
Original file line number Diff line number Diff line change 37
37
- name : Install Go
38
38
uses : actions/setup-go@v5
39
39
with :
40
- go-version : ' 1.21 '
40
+ go-version : ' 1.22 '
41
41
cache : true
42
42
- name : Restore LLVM source cache
43
43
uses : actions/cache/restore@v4
@@ -145,7 +145,7 @@ jobs:
145
145
- name : Install Go
146
146
uses : actions/setup-go@v5
147
147
with :
148
- go-version : ' 1.21 '
148
+ go-version : ' 1.22 '
149
149
cache : true
150
150
- name : Build TinyGo (LLVM ${{ matrix.version }})
151
151
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.21 -alpine
21
+ image : golang:1.22 -alpine
22
22
steps :
23
23
- name : Install apk dependencies
24
24
# tar: needed for actions/cache@v4
@@ -135,7 +135,7 @@ jobs:
135
135
- name : Install Go
136
136
uses : actions/setup-go@v5
137
137
with :
138
- go-version : ' 1.21 '
138
+ go-version : ' 1.22 '
139
139
cache : true
140
140
- name : Install wasmtime
141
141
run : |
@@ -178,7 +178,7 @@ jobs:
178
178
- name : Install Go
179
179
uses : actions/setup-go@v5
180
180
with :
181
- go-version : ' 1.21 '
181
+ go-version : ' 1.22 '
182
182
cache : true
183
183
- name : Install Node.js
184
184
uses : actions/setup-node@v4
@@ -301,7 +301,7 @@ jobs:
301
301
- name : Install Go
302
302
uses : actions/setup-go@v5
303
303
with :
304
- go-version : ' 1.21 '
304
+ go-version : ' 1.22 '
305
305
cache : true
306
306
- name : Restore LLVM source cache
307
307
uses : actions/cache/restore@v4
Original file line number Diff line number Diff line change 35
35
- name : Install Go
36
36
uses : actions/setup-go@v5
37
37
with :
38
- go-version : ' 1.21 '
38
+ go-version : ' 1.22 '
39
39
cache : true
40
40
- name : Restore cached LLVM source
41
41
uses : actions/cache/restore@v4
@@ -143,7 +143,7 @@ jobs:
143
143
- name : Install Go
144
144
uses : actions/setup-go@v5
145
145
with :
146
- go-version : ' 1.21 '
146
+ go-version : ' 1.22 '
147
147
cache : true
148
148
- name : Download TinyGo build
149
149
uses : actions/download-artifact@v4
@@ -173,7 +173,7 @@ jobs:
173
173
- name : Install Go
174
174
uses : actions/setup-go@v5
175
175
with :
176
- go-version : ' 1.21 '
176
+ go-version : ' 1.22 '
177
177
cache : true
178
178
- name : Download TinyGo build
179
179
uses : actions/download-artifact@v4
@@ -209,7 +209,7 @@ jobs:
209
209
- name : Install Go
210
210
uses : actions/setup-go@v5
211
211
with :
212
- go-version : ' 1.21 '
212
+ go-version : ' 1.22 '
213
213
cache : true
214
214
- name : Download TinyGo build
215
215
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.21 AS tinygo-llvm
2
+ FROM golang:1.22 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 && \
You can’t perform that action at this time.
0 commit comments