summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: b25a05264e829857118d58b79a2cf50936682c77 (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
28
29
language: go

go:
  - "1.9"
  - "1.10"
  - "1.11"
  - "1.12"
  - "1.13"
  - tip

install:
  - make build-libgit2-static
  - go get --tags "static" ./...

script:
  - make test-static

matrix:
  allow_failures:
    - go: tip

git:
  submodules: true

branches:
  only:
  - master
  - /v\d+/
  - /release-.*/