Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

all: depend on go.bytecodealliance.org/[email protected] #270

Merged
merged 3 commits into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ tests/generated: json

# test runs Go and TinyGo tests
GOTESTARGS :=
GOTESTMODULES := ./... ./cm/...
.PHONY: test
test:
go test $(GOTESTARGS) ./...
GOARCH=wasm GOOS=wasip1 go test $(GOTESTARGS) ./...
tinygo test $(GOTESTARGS) ./...
tinygo test -target=wasip1 $(GOTESTARGS) ./...
tinygo test -target=wasip2 $(GOTESTARGS) ./...
go test $(GOTESTARGS) $(GOTESTMODULES)
GOARCH=wasm GOOS=wasip1 go test $(GOTESTARGS) $(GOTESTMODULES)
tinygo test $(GOTESTARGS) $(GOTESTMODULES)
tinygo test -target=wasip1 $(GOTESTARGS) $(GOTESTMODULES)
tinygo test -target=wasip2 $(GOTESTARGS) $(GOTESTMODULES)
tinygo test -target=wasip2 $(GOTESTARGS) ./tests/...
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ require (
github.com/regclient/regclient v0.7.2
github.com/sergi/go-diff v1.3.1
github.com/urfave/cli/v3 v3.0.0-beta1
go.bytecodealliance.org/cm v0.1.0
golang.org/x/mod v0.22.0
golang.org/x/tools v0.28.0
)
Expand Down
4 changes: 4 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ github.com/ulikunitz/xz v0.5.12 h1:37Nm15o69RwBkXM0J6A5OlE67RZTfzUxTj8fB3dfcsc=
github.com/ulikunitz/xz v0.5.12/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
github.com/urfave/cli/v3 v3.0.0-beta1 h1:6DTaaUarcM0wX7qj5Hcvs+5Dm3dyUTBbEwIWAjcw9Zg=
github.com/urfave/cli/v3 v3.0.0-beta1/go.mod h1:FnIeEMYu+ko8zP1F9Ypr3xkZMIDqW3DR92yUtY39q1Y=
go.bytecodealliance.org/cm v0.1.0-pre.1 h1:Phd29v6p83WATaorcrczB4xaKmQbvBpPdl2nLZRwBuY=
go.bytecodealliance.org/cm v0.1.0-pre.1/go.mod h1:NZ2UT0DyGhBfpIPOxPMCuG6g1YTR4YF3xweD7mHX5VQ=
go.bytecodealliance.org/cm v0.1.0 h1:78Rk4d5rgir5Hm+LMFpDWhjmFBWrKDFPSKUwDBj+nwo=
go.bytecodealliance.org/cm v0.1.0/go.mod h1:NZ2UT0DyGhBfpIPOxPMCuG6g1YTR4YF3xweD7mHX5VQ=
golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4=
golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
Expand Down
Loading