.travis.yml 449 B

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