Skip to content

Commit 4ce54ed

Browse files
committed
ci: switch to Go 1.20
1 parent d8b1fac commit 4ce54ed

File tree

5 files changed

+12
-20
lines changed

5 files changed

+12
-20
lines changed

.circleci/config.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,18 +105,10 @@ jobs:
105105
- test-linux:
106106
llvm: "14"
107107
resource_class: large
108-
test-llvm15-go120:
109-
docker:
110-
- image: golang:1.20-rc-buster
111-
steps:
112-
- test-linux:
113-
llvm: "15"
114-
resource_class: large
115108

116109
workflows:
117110
test-all:
118111
jobs:
119112
# This tests our lowest supported versions of Go and LLVM, to make sure at
120113
# least the smoke tests still pass.
121114
- test-llvm14-go118
122-
- test-llvm15-go120

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install Go
2828
uses: actions/setup-go@v3
2929
with:
30-
go-version: '1.19'
30+
go-version: '1.20'
3131
cache: true
3232
- name: Cache LLVM source
3333
uses: actions/cache@v3
@@ -107,7 +107,7 @@ jobs:
107107
- name: Install Go
108108
uses: actions/setup-go@v3
109109
with:
110-
go-version: '1.19'
110+
go-version: '1.20'
111111
cache: true
112112
- name: Build TinyGo
113113
run: go install

.github/workflows/linux.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# statically linked binary.
1919
runs-on: ubuntu-latest
2020
container:
21-
image: golang:1.19-alpine
21+
image: golang:1.20-alpine
2222
steps:
2323
- name: Install apk dependencies
2424
# tar: needed for actions/cache@v3
@@ -118,7 +118,7 @@ jobs:
118118
- name: Install Go
119119
uses: actions/setup-go@v3
120120
with:
121-
go-version: '1.19'
121+
go-version: '1.20'
122122
cache: true
123123
- name: Install wasmtime
124124
run: |
@@ -158,7 +158,7 @@ jobs:
158158
- name: Install Go
159159
uses: actions/setup-go@v3
160160
with:
161-
go-version: '1.19'
161+
go-version: '1.20'
162162
cache: true
163163
- name: Install Node.js
164164
uses: actions/setup-node@v3
@@ -252,7 +252,7 @@ jobs:
252252
- name: Install Go
253253
uses: actions/setup-go@v3
254254
with:
255-
go-version: '1.19'
255+
go-version: '1.20'
256256
cache: true
257257
- name: Cache LLVM source
258258
uses: actions/cache@v3
@@ -352,7 +352,7 @@ jobs:
352352
- name: Install Go
353353
uses: actions/setup-go@v3
354354
with:
355-
go-version: '1.19'
355+
go-version: '1.20'
356356
cache: true
357357
- name: Cache LLVM source
358358
uses: actions/cache@v3

.github/workflows/windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Go
3030
uses: actions/setup-go@v3
3131
with:
32-
go-version: '1.19'
32+
go-version: '1.20'
3333
cache: true
3434
- name: Cache LLVM source
3535
uses: actions/cache@v3
@@ -112,7 +112,7 @@ jobs:
112112
- name: Install Go
113113
uses: actions/setup-go@v3
114114
with:
115-
go-version: '1.19'
115+
go-version: '1.20'
116116
cache: true
117117
- name: Download TinyGo build
118118
uses: actions/download-artifact@v2
@@ -136,7 +136,7 @@ jobs:
136136
- name: Install Go
137137
uses: actions/setup-go@v3
138138
with:
139-
go-version: '1.19'
139+
go-version: '1.20'
140140
cache: true
141141
- name: Download TinyGo build
142142
uses: actions/download-artifact@v2
@@ -166,7 +166,7 @@ jobs:
166166
- name: Install Go
167167
uses: actions/setup-go@v3
168168
with:
169-
go-version: '1.19'
169+
go-version: '1.20'
170170
cache: true
171171
- name: Download TinyGo build
172172
uses: actions/download-artifact@v2

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# tinygo-llvm stage obtains the llvm source for TinyGo
2-
FROM golang:1.19 AS tinygo-llvm
2+
FROM golang:1.20 AS tinygo-llvm
33

44
RUN apt-get update && \
55
apt-get install -y apt-utils make cmake clang-11 ninja-build

0 commit comments

Comments
 (0)