.travis.yml 441 B

1234567891011121314151617181920212223242526
  1. language: go
  2. go:
  3. - 1.3
  4. - 1.4
  5. - 1.5
  6. - tip
  7. before_install:
  8. - sudo apt-get update -qq
  9. - sudo apt-get install -y libpam-dev
  10. - go get github.com/msteinert/pam
  11. script: go build -v -tags "pam"
  12. notifications:
  13. email:
  14. - u@gogs.io
  15. slack: gophercn:o5pSanyTeNhnfYc3QnG0X7Wx
  16. webhooks:
  17. urls:
  18. - https://webhooks.gitter.im/e/b590f8e03882f7aedc3e
  19. on_success: change
  20. on_failure: always
  21. on_start: never