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.
This commit is contained in:
Ayke van Laethem
2021-08-15 15:22:18 +02:00
committed by Ron Evans
parent 04f520040e
commit 25c7bfd404
9 changed files with 12 additions and 54 deletions
-2
View File
@@ -1,5 +1,3 @@
// +build go1.14
package wasm
import (
-9
View File
@@ -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"
-2
View File
@@ -1,5 +1,3 @@
// +build go1.14
package wasm
import (
-2
View File
@@ -1,5 +1,3 @@
// +build go1.14
package wasm
import (