This repository was archived by the owner on Apr 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 32
32
name : build examples
33
33
runs-on : ubuntu-latest
34
34
container :
35
- image : tinygo/tinygo:0.16 .0
35
+ image : tinygo/tinygo:0.17 .0
36
36
steps :
37
37
- name : checkout
38
38
uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ build.example:
6
6
tinygo build -o ./examples/${name} /main.go.wasm -scheduler=none -target=wasi ./examples/${name} /main.go
7
7
8
8
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 \
10
10
tinygo build -o /tmp/proxy-wasm-go/examples/${name} /main.go.wasm -scheduler=none -target=wasi \
11
11
/tmp/proxy-wasm-go/examples/${name} /main.go
12
12
13
13
build.examples :
14
14
find ./examples -type f -name " main.go" | xargs -Ip tinygo build -o p.wasm -scheduler=none -target=wasi p
15
15
16
16
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 \
18
18
' find /tmp/proxy-wasm-go/examples/ -type f -name "main.go" | xargs -Ip tinygo build -o p.wasm -scheduler=none -target=wasi p'
19
19
20
20
lint :
You can’t perform that action at this time.
0 commit comments