File tree Expand file tree Collapse file tree 5 files changed +9
-19
lines changed Expand file tree Collapse file tree 5 files changed +9
-19
lines changed Original file line number Diff line number Diff line change @@ -118,20 +118,10 @@ jobs:
118
118
steps :
119
119
- test-linux :
120
120
llvm : " 14"
121
- test-llvm14-go119 :
122
- docker :
123
- - image : golang:1.19beta1-buster
124
- steps :
125
- - test-linux :
126
- llvm : " 14"
127
- fmt-check : false
128
121
129
122
workflows :
130
123
test-all :
131
124
jobs :
132
125
# This tests our lowest supported versions of Go and LLVM, to make sure at
133
126
# least the smoke tests still pass.
134
127
- test-llvm14-go118
135
- # This tests a beta version of Go. It should be removed once regular
136
- # release builds are built using this version.
137
- - test-llvm14-go119
Original file line number Diff line number Diff line change 34
34
- name : Install Go
35
35
uses : actions/setup-go@v3
36
36
with :
37
- go-version : ' 1.18 '
37
+ go-version : ' 1.19 '
38
38
cache : true
39
39
- name : Cache LLVM source
40
40
uses : actions/cache@v3
@@ -114,7 +114,7 @@ jobs:
114
114
- name : Install Go
115
115
uses : actions/setup-go@v3
116
116
with :
117
- go-version : ' 1.18 '
117
+ go-version : ' 1.19 '
118
118
cache : true
119
119
- name : Build TinyGo
120
120
run : go install
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.18 -alpine
21
+ image : golang:1.19 -alpine
22
22
steps :
23
23
- name : Install apk dependencies
24
24
# tar: needed for actions/cache@v3
@@ -118,7 +118,7 @@ jobs:
118
118
- name : Install Go
119
119
uses : actions/setup-go@v3
120
120
with :
121
- go-version : ' 1.18 '
121
+ go-version : ' 1.19 '
122
122
cache : true
123
123
- name : Install wasmtime
124
124
run : |
@@ -171,7 +171,7 @@ jobs:
171
171
- name : Install Go
172
172
uses : actions/setup-go@v3
173
173
with :
174
- go-version : ' 1.18 '
174
+ go-version : ' 1.19 '
175
175
cache : true
176
176
- name : Install Node.js
177
177
uses : actions/setup-node@v2
@@ -271,7 +271,7 @@ jobs:
271
271
- name : Install Go
272
272
uses : actions/setup-go@v3
273
273
with :
274
- go-version : ' 1.18 '
274
+ go-version : ' 1.19 '
275
275
cache : true
276
276
- name : Cache LLVM source
277
277
uses : actions/cache@v3
@@ -371,7 +371,7 @@ jobs:
371
371
- name : Install Go
372
372
uses : actions/setup-go@v3
373
373
with :
374
- go-version : ' 1.18 '
374
+ go-version : ' 1.19 '
375
375
cache : true
376
376
- name : Cache LLVM source
377
377
uses : actions/cache@v3
Original file line number Diff line number Diff line change 29
29
- name : Install Go
30
30
uses : actions/setup-go@v3
31
31
with :
32
- go-version : ' 1.18 '
32
+ go-version : ' 1.19 '
33
33
cache : true
34
34
- name : Cache LLVM source
35
35
uses : actions/cache@v3
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.18 AS tinygo-llvm
2
+ FROM golang:1.19 AS tinygo-llvm
3
3
4
4
RUN apt-get update && \
5
5
apt-get install -y apt-utils make cmake clang-11 binutils-avr gcc-avr avr-libc ninja-build
You can’t perform that action at this time.
0 commit comments