Skip to content

Commit 0a61eaa

Browse files
committed
Fix go list on i386 build
It errored due to lack of crypto/ed25519 on old Go.
1 parent 0e4bf73 commit 0a61eaa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ _test_job: &test_job
6161
- travis_retry bash <(curl -s https://codecov.io/bash) -c -F go
6262
_test_i386_job: &test_i386_job
6363
env: CACHE_NAME=test386
64-
language: bash
6564
services: docker
6665
before_install:
6766
- if [ -f .github/.ci.conf ]; then . .github/.ci.conf; fi
@@ -120,9 +119,11 @@ jobs:
120119
- <<: *test_i386_job
121120
name: Test i386 1.13
122121
env: GO_VERSION=1.13
122+
go: 1.14 # version for host environment used to go list
123123
- <<: *test_i386_job
124124
name: Test i386 1.14
125125
env: GO_VERSION=1.14
126+
go: 1.14 # version for host environment used to go list
126127
- <<: *test_wasm_job
127128
name: Test WASM 1.13
128129
env: GO_VERSION=1.13

0 commit comments

Comments
 (0)