Skip to content

Commit ada22bc

Browse files
committed
all: build/test using Go 1.27.0
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent e3bf930 commit ada22bc

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Go
4141
uses: actions/setup-go@v6
4242
with:
43-
go-version: '1.27.0-rc.3'
43+
go-version: '1.27.0'
4444
cache: true
4545
- name: Restore LLVM source cache
4646
uses: actions/cache/restore@v5
@@ -131,7 +131,7 @@ jobs:
131131
- name: Install Go
132132
uses: actions/setup-go@v6
133133
with:
134-
go-version: '1.27.0-rc.3'
134+
go-version: '1.27.0'
135135
cache: true
136136
- name: Build TinyGo (LLVM ${{ matrix.version }})
137137
run: go install -tags=llvm${{ matrix.version }}

.github/workflows/linux.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Go
2424
uses: actions/setup-go@v6
2525
with:
26-
go-version: '1.27.0-rc.3'
26+
go-version: '1.27.0'
2727
cache: true
2828
- name: Run go mod tidy
2929
run: go mod tidy
@@ -36,7 +36,7 @@ jobs:
3636
# statically linked binary.
3737
runs-on: ubuntu-latest
3838
container:
39-
image: golang:1.27rc3-alpine
39+
image: golang:1.27-alpine
4040
outputs:
4141
version: ${{ steps.version.outputs.version }}
4242
steps:
@@ -160,7 +160,7 @@ jobs:
160160
- name: Install Go
161161
uses: actions/setup-go@v6
162162
with:
163-
go-version: '1.27.0-rc.3'
163+
go-version: '1.27.0'
164164
cache: true
165165
- name: Install wasmtime
166166
uses: bytecodealliance/actions/wasmtime/setup@v1
@@ -204,7 +204,7 @@ jobs:
204204
- name: Install Go
205205
uses: actions/setup-go@v6
206206
with:
207-
go-version: '1.27.0-rc.3'
207+
go-version: '1.27.0'
208208
cache: true
209209
- name: Install Node.js
210210
uses: actions/setup-node@v6
@@ -323,7 +323,7 @@ jobs:
323323
- name: Install Go
324324
uses: actions/setup-go@v6
325325
with:
326-
go-version: '1.27.0-rc.3'
326+
go-version: '1.27.0'
327327
cache: true
328328
- name: Restore LLVM source cache
329329
uses: actions/cache/restore@v5

.github/workflows/windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install Go
3535
uses: actions/setup-go@v6
3636
with:
37-
go-version: '1.27.0-rc.3'
37+
go-version: '1.27.0'
3838
cache: true
3939
- name: Restore cached LLVM source
4040
uses: actions/cache/restore@v5
@@ -129,7 +129,7 @@ jobs:
129129
- name: Install Go
130130
uses: actions/setup-go@v6
131131
with:
132-
go-version: '1.27.0-rc.3'
132+
go-version: '1.27.0'
133133
cache: true
134134
- name: Download TinyGo build
135135
uses: actions/download-artifact@v8
@@ -150,7 +150,7 @@ jobs:
150150
- name: Install Go
151151
uses: actions/setup-go@v6
152152
with:
153-
go-version: '1.27.0-rc.3'
153+
go-version: '1.27.0'
154154
cache: true
155155
- name: Download TinyGo build
156156
uses: actions/download-artifact@v8
@@ -176,7 +176,7 @@ jobs:
176176
- name: Install Go
177177
uses: actions/setup-go@v6
178178
with:
179-
go-version: '1.27.0-rc.3'
179+
go-version: '1.27.0'
180180
cache: true
181181
- name: Download TinyGo build
182182
uses: actions/download-artifact@v8

Dockerfile

Lines changed: 2 additions & 2 deletions
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.27rc3 AS tinygo-llvm
2+
FROM golang:1.27 AS tinygo-llvm
33

44
RUN apt-get update && \
55
apt-get install -y apt-utils make cmake clang-17 ninja-build && \
@@ -33,7 +33,7 @@ RUN cd /tinygo/ && \
3333

3434
# tinygo-compiler copies the compiler build over to a base Go container (without
3535
# all the build tools etc).
36-
FROM golang:1.27rc3 AS tinygo-compiler
36+
FROM golang:1.27 AS tinygo-compiler
3737

3838
# Copy tinygo build.
3939
COPY --from=tinygo-compiler-build /tinygo/build/release/tinygo /tinygo

0 commit comments

Comments
 (0)