From 0092a05eb7fc0828882e77d52fe2fc6ecfd0d3b3 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 9 Feb 2020 01:47:49 +0900 Subject: [PATCH] Update Go version in .travis.yml (Go 1.14) --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8302bfb05..3234b5da3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,9 +32,9 @@ install: - go get golang.org/dl/go1.12.16 - go1.12.16 download - # Install Go 1.14 beta1 - - go get golang.org/dl/go1.14beta1 - - go1.14beta1 download + # Install Go 1.14rc1 + - go get golang.org/dl/go1.14rc1 + - go1.14rc1 download # Make the working directory - mkdir /tmp/work @@ -48,7 +48,7 @@ install: - if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then go mod edit -replace=github.com/hajimehoshi/ebiten=./ebiten; fi # wasmbrowsertest - - GO111MODULE=off go1.14beta1 get github.com/agnivade/wasmbrowsertest + - GO111MODULE=off go1.14rc1 get github.com/agnivade/wasmbrowsertest - mv $GOPATH/bin/wasmbrowsertest $GOPATH/bin/go_js_wasm_exec # GopherJS @@ -89,7 +89,7 @@ script: # go test - go test -v github.com/hajimehoshi/ebiten/... - - GOOS=js GOARCH=wasm go1.14beta1 test -v github.com/hajimehoshi/ebiten/... + - GOOS=js GOARCH=wasm go1.14rc1 test -v github.com/hajimehoshi/ebiten/... # GopherJS - GO111MODULE=off go1.12.16 run github.com/gopherjs/gopherjs build --tags=example -v github.com/hajimehoshi/ebiten/examples/blocks