Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit a771960

Browse files
authored
Update TinyGo to 0.17 (#123)
Signed-off-by: Takeshi Yoneda <[email protected]>
1 parent 70120a6 commit a771960

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: build examples
3333
runs-on: ubuntu-latest
3434
container:
35-
image: tinygo/tinygo:0.16.0
35+
image: tinygo/tinygo:0.17.0
3636
steps:
3737
- name: checkout
3838
uses: actions/checkout@v2

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ build.example:
66
tinygo build -o ./examples/${name}/main.go.wasm -scheduler=none -target=wasi ./examples/${name}/main.go
77

88
build.example.docker:
9-
docker run -it -w /tmp/proxy-wasm-go -v $(shell pwd):/tmp/proxy-wasm-go tinygo/tinygo:0.16.0 \
9+
docker run -it -w /tmp/proxy-wasm-go -v $(shell pwd):/tmp/proxy-wasm-go tinygo/tinygo:0.17.0 \
1010
tinygo build -o /tmp/proxy-wasm-go/examples/${name}/main.go.wasm -scheduler=none -target=wasi \
1111
/tmp/proxy-wasm-go/examples/${name}/main.go
1212

1313
build.examples:
1414
find ./examples -type f -name "main.go" | xargs -Ip tinygo build -o p.wasm -scheduler=none -target=wasi p
1515

1616
build.examples.docker:
17-
docker run -it -w /tmp/proxy-wasm-go -v $(shell pwd):/tmp/proxy-wasm-go tinygo/tinygo:0.16.0 /bin/bash -c \
17+
docker run -it -w /tmp/proxy-wasm-go -v $(shell pwd):/tmp/proxy-wasm-go tinygo/tinygo:0.17.0 /bin/bash -c \
1818
'find /tmp/proxy-wasm-go/examples/ -type f -name "main.go" | xargs -Ip tinygo build -o p.wasm -scheduler=none -target=wasi p'
1919

2020
lint:

0 commit comments

Comments
 (0)