th5/.travis.yml
Kris Kwiatkowski 86b0aecf5e go 1.11: Switch to GO 1.11
Minimal amount of changes needed to switch to GO 1.11
* crypto/internal/cipherhw was removed and internal/cpu was introduced
* wrong code formatting in handhsake_server_test.go was breaking
  the build
2018-10-17 14:06:11 +01:00

26 lines
353 B
YAML

sudo: required
language: go
services:
- docker
go:
- 1.11.x
env:
- TEST_SUITE=test-unit
- TEST_SUITE=test-bogo
- TEST_SUITE=test-interop
matrix:
fast_finish: true
before_install:
- make -f _dev/Makefile fmtcheck
install:
- sudo pip install docker
script:
- make -f _dev/Makefile build-all && make -f _dev/Makefile "$TEST_SUITE"