You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122
  1. sudo: required
  2. language: go
  3. services:
  4. - docker
  5. go:
  6. - 1.10.x
  7. env:
  8. - TEST_SUITE=test-unit
  9. - TEST_SUITE=test-bogo
  10. - TEST_SUITE=test-interop
  11. matrix:
  12. fast_finish: true
  13. install:
  14. - sudo pip install docker
  15. script:
  16. - make -f _dev/Makefile build-all && make -f _dev/Makefile "$TEST_SUITE"