File tree Expand file tree Collapse file tree 4 files changed +5
-13
lines changed Expand file tree Collapse file tree 4 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 27
27
with :
28
28
services : |
29
29
redis
30
- - name : Install Go tip
31
- run : |
32
- curl -sL https://storage.googleapis.com/go-build-snap/go/linux-amd64/$(git ls-remote https://github.com/golang/go.git HEAD | awk '{print $1;}').tar.gz -o gotip.tar.gz
33
- ls -lah gotip.tar.gz
34
- mkdir -p $HOME/gotip
35
- tar -C $HOME/gotip -xzf gotip.tar.gz
36
- - run : make test GO=$HOME/gotip/bin/go GOPATH=$HOME/gotip
30
+ - run : make test
Original file line number Diff line number Diff line change 1
1
.PHONY : clean proto test lint wasirun
2
2
3
- GO ?= gotip
3
+ GO ?= go
4
4
GOPATH ?= $(shell $(GO ) env GOPATH)
5
5
wasirun = $(GOPATH ) /bin/wasirun
6
6
Original file line number Diff line number Diff line change @@ -10,15 +10,13 @@ This library provides `net.Dial` and `net.Listen` functions for
10
10
Applications built with this library are compatible with [ WasmEdge] [ wasmedge ]
11
11
and [ wasi-go] [ wasi-go ] such as [ Timecraft] [ timecraft ] .
12
12
13
- [ gotip ] : https://pkg. go.dev/golang.org/dl/gotip
13
+ [ go-121 ] : https://go.dev/blog/go1.21
14
14
[ timecraft ] : https://github.com/stealthrocket/timecraft
15
15
[ wasi-go ] : https://github.com/stealthrocket/wasi-go
16
16
[ wasip1 ] : https://tip.golang.org/doc/go1.21#wasip1
17
17
[ wasmedge ] : https://github.com/WasmEdge/WasmEdge
18
18
19
- _ Note: GOOS=wasip1 will be released in Go 1.21. At this time you would need to
20
- use [ gotip] [ gotip ] to get the latest version of the Go compiler in order to use
21
- this package._
19
+ _ Note: ` GOOS=wasip1 ` requires [ Go 1.21] [ go-121 ] ._
22
20
23
21
## Motivation
24
22
Original file line number Diff line number Diff line change 1
1
module github.com/stealthrocket/net
2
2
3
- go 1.20
3
+ go 1.21
4
4
5
5
require golang.org/x/net v0.10.0
You can’t perform that action at this time.
0 commit comments