1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-19 14:57:04 +00:00

travis: Increase minimum supported version to 1.9

As of a29dc8fd (2019-04-26), golang.org/x/crypto requires math/bits.
math/bits was introduced in Go 1.9, so we can no longer build from head
using 1.7.

Building using Debian's packaged dependencies should work just fine, but
since we want Travis to build from head, this commit updates the minimum
supported version to 1.9.
This commit is contained in:
Alberto Bertogli
2019-05-05 13:04:04 +01:00
parent a5edd9053f
commit a92497aef0

View File

@@ -6,7 +6,9 @@ dist: trusty
sudo: false sudo: false
go: go:
- 1.7 # Debian stable. # Normally we'd want to support the version in Debian stable, but
# golang.org/x/crypto requires math/bits which appeared in 1.9.
- 1.9
- stable - stable
- master - master