diff options
author | Ayke van Laethem <[email protected]> | 2021-08-15 15:22:18 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-08-16 21:19:26 +0200 |
commit | 25c7bfd404448a159a52f41930ac210bca6f1b53 (patch) | |
tree | 824566580cec6327d35c03a7f652e53b3401820e /tests | |
parent | 04f520040e6d60ace0728d0016cbe1e75bc44f71 (diff) | |
download | tinygo-25c7bfd404448a159a52f41930ac210bca6f1b53.tar.gz tinygo-25c7bfd404448a159a52f41930ac210bca6f1b53.zip |
ci: drop support for Go 1.13 and 1.14
They aren't supported anymore in CI, and because untested code is broken
code, let's remove support for these Go versions altogether.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wasm/event_test.go | 2 | ||||
-rw-r--r-- | tests/wasm/fmt_test.go | 9 | ||||
-rw-r--r-- | tests/wasm/fmtprint_test.go | 2 | ||||
-rw-r--r-- | tests/wasm/log_test.go | 2 |
4 files changed, 0 insertions, 15 deletions
diff --git a/tests/wasm/event_test.go b/tests/wasm/event_test.go index f4ede023a..bbece4b4a 100644 --- a/tests/wasm/event_test.go +++ b/tests/wasm/event_test.go @@ -1,5 +1,3 @@ -// +build go1.14 - package wasm import ( diff --git a/tests/wasm/fmt_test.go b/tests/wasm/fmt_test.go index cac38e721..0a96c45dd 100644 --- a/tests/wasm/fmt_test.go +++ b/tests/wasm/fmt_test.go @@ -1,14 +1,5 @@ -// +build go1.14 - package wasm -// NOTE: this should work in go1.13 but panics with: -// panic: syscall/js: call of Value.Get on string -// which is coming from here: https://github.com/golang/go/blob/release-branch.go1.13/src/syscall/js/js.go#L252 -// But I'm not sure how import "fmt" results in this. -// To reproduce, install Go 1.13.x and change the build tag above -// to go1.13 and run this test. - import ( "testing" "time" diff --git a/tests/wasm/fmtprint_test.go b/tests/wasm/fmtprint_test.go index 7b4a4701a..16a2173b1 100644 --- a/tests/wasm/fmtprint_test.go +++ b/tests/wasm/fmtprint_test.go @@ -1,5 +1,3 @@ -// +build go1.14 - package wasm import ( diff --git a/tests/wasm/log_test.go b/tests/wasm/log_test.go index ea314e478..3da94ed39 100644 --- a/tests/wasm/log_test.go +++ b/tests/wasm/log_test.go @@ -1,5 +1,3 @@ -// +build go1.14 - package wasm import ( |