diff options
author | Jakob Unterwurzacher | 2018-08-02 20:06:34 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-08-02 20:06:34 +0200 |
commit | f48b731e76fb199352d3e80ea49d76865ee6e604 (patch) | |
tree | 7f2155df8a67af0d6ad4141144ddb1b05548fcd9 /.travis.yml | |
parent | d620054caf011982dce2eef5fde0ad11738c4cea (diff) |
travis ci: drop go 1.5 and go 1.6
Trying to build with these versions now throws this error:
# golang.org/x/sys/unix
../../../golang.org/x/sys/unix/ioctl.go:18: undefined: runtime.KeepAlive
It looks like x/sys/unix has dropped support for older Go
versions.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 922d436..9e677df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,11 +7,9 @@ dist: trusty git: depth: 100 -# Build with the lastest versions of Go 1.5 and later +# Build with the lastest versions of Go 1.7 and later # See https://golang.org/dl/ go: - - 1.5.x - - 1.6.x - 1.7.x - 1.8.x - 1.9.x |