summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 837d9a1ccc82742bc41a05f3862ea0cf8498227f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
language: go

go:
  - 1.3
  - 1.4
  - 1.5

before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -y libpam-dev
  - go get github.com/msteinert/pam 

install:
  - go get -t -v ./...

script: go build -v -tags "pam"

notifications:
  email:
    - u@gogs.io
  slack: gophercn:o5pSanyTeNhnfYc3QnG0X7Wx
  webhooks:
    urls:
      - https://webhooks.gitter.im/e/b590f8e03882f7aedc3e
    on_success: change 
    on_failure: always 
    on_start: never