Skip to content

Commit

Permalink
travis: compile also with go1.11 and on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskwiatkowski committed Oct 19, 2018
1 parent 44b3104 commit 00da959
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ sudo: required
language: go

go:
- 1.10.x
- 1.10.x
- 1.11.x
- master

matrix:
fast_finish: true
Expand All @@ -12,6 +14,8 @@ script:
- make bench
- make cover
- NOASM=1 make cover-sidh
- GOARCH=arm64 OPTS=-c make test
- GOARCH=arm64 NOASM=1 OPTS=-c make test

after_script:
- bash <(curl -s https://codecov.io/bash) -t 3cee0edf-64e9-4440-82f1-f1f41967f336

0 comments on commit 00da959

Please sign in to comment.