Skip to content

Commit b0f9e2f

Browse files
authored
Merge pull request #273 from bytecodealliance/ydnar/tinygo-v0.35.0
all: add TinyGo v0.35.0, drop v0.32.0
2 parents a0aa3b9 + d6de9d6 commit b0f9e2f

File tree

1 file changed

+5
-17
lines changed

1 file changed

+5
-17
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,7 @@ jobs:
8383
strategy:
8484
matrix:
8585
go-version: ["1.22", "1.23"]
86-
tinygo-version: ["0.32.0", "0.33.0", "0.34.0"]
87-
exclude:
88-
- go-version: "1.23"
89-
tinygo-version: "0.32.0"
86+
tinygo-version: ["0.33.0", "0.34.0", "0.35.0"]
9087
steps:
9188
- name: Checkout repo
9289
uses: actions/checkout@v4
@@ -122,10 +119,7 @@ jobs:
122119
strategy:
123120
matrix:
124121
go-version: ["1.22", "1.23"]
125-
tinygo-version: ["0.32.0", "0.33.0", "0.34.0"]
126-
exclude:
127-
- go-version: "1.23"
128-
tinygo-version: "0.32.0"
122+
tinygo-version: ["0.33.0", "0.34.0", "0.35.0"]
129123
steps:
130124
- name: Checkout repo
131125
uses: actions/checkout@v4
@@ -167,20 +161,14 @@ jobs:
167161
GOOS: wasip1
168162
run: go test -v ${{ env.go-modules }}
169163

170-
- name: Test wasm/wasip1 with TinyGo 0.32.0
171-
if: ${{ matrix.tinygo-version == '0.32.0' }}
172-
run: tinygo test -v -target=wasi ${{ env.go-modules }}
173-
174-
- name: Test wasm/wasip1 with TinyGo >= 0.33.0
175-
if: ${{ matrix.tinygo-version != '0.32.0' }}
164+
- name: Test wasm/wasip1 with TinyGo
176165
run: tinygo test -v -target=wasip1 ${{ env.go-modules }}
177166

178-
- name: Test wasm/wasip2 with TinyGo >= 0.33.0
179-
if: ${{ matrix.tinygo-version != '0.32.0' }}
167+
- name: Test wasm/wasip2 with TinyGo
180168
run: tinygo test -v -target=wasip2 ${{ env.go-modules }}
181169

182170
- name: Test generated Go with TinyGo >= 0.34.0
183-
if: ${{ matrix.tinygo-version != '0.32.0' && matrix.tinygo-version != '0.33.0' }}
171+
if: ${{ matrix.tinygo-version != '0.33.0' }}
184172
run: tinygo test -v -target wasip2 ./tests/...
185173

186174
- name: Verify repo is unchanged

0 commit comments

Comments
 (0)