-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update Go versions and streamline build process (#15)
* ci: update Go versions and streamline build process Expanded testing to cover Go 1.18 to 1.23. Convinced our CI to use Makefiles instead of clumsy individual commands—robots deserve some stability too. * chore: disabling unsupported versions * ci: reduce test versions to modern survivalists Trimmed down our Go and TinyGo versions, keeping only the ones that didn't break under pressure. Who knew YAML had survival instincts?
- Loading branch information
Showing
4 changed files
with
17 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
build: | ||
tinygo build -o example/hello.wasm -scheduler=none --no-debug -target=wasi example/hello.go | ||
$(MAKE) -C internal/e2e build | ||
|
||
tests: | ||
go test -v ./... | ||
$(MAKE) -C internal test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module github.com/wapc/wapc-guest-tinygo | ||
|
||
go 1.16 | ||
go 1.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
test: | ||
go test -v ./... |