aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 043d7dadf38360c8f6126051843797b55643d87e (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
language: go
go:
- 1.6
- 1.7
- tip
matrix:
  allow_failures:
  - go: tip


language: go

go:
  - 1.6
  - 1.7
  - tip

matrix:
  allow_failures:
    - go: tip


before_install:
  - openssl aes-256-cbc -K $encrypted_1477e58fe67a_key -iv $encrypted_1477e58fe67a_iv -in .travis/deploy.pem.enc -out .travis/deploy.pem -d
  - eval "$(ssh-agent -s)"
  - chmod 600 .travis/deploy.pem
  - ssh-add .travis/deploy.pem

install:
  - rm -rf $GOPATH/src/gopkg.in/src-d
  - mkdir -p $GOPATH/src/gopkg.in/src-d
  - ln -s $PWD $GOPATH/src/gopkg.in/src-d/go-git.v4
  - go get -v -t ./...

script:
  - make test-coverage

after_success:
  - bash <(curl -s https://codecov.io/bash)