fork of go-git with some jj specific features
1language: go
2
3go:
4 - 1.9.x
5 - "1.10"
6
7go_import_path: gopkg.in/src-d/go-git.v4
8
9env:
10 - GIT_VERSION=master
11 - GIT_VERSION=v1.9.3
12 - GIT_VERSION=v2.11.0
13
14cache:
15 directories:
16 - $HOME/.git-dist
17
18before_script:
19 - export GIT_DIST_PATH=$HOME/.git-dist
20 - make build-git
21
22before_install:
23 - git config --global user.email "travis@example.com"
24 - git config --global user.name "Travis CI"
25
26install:
27 - go get -v -t ./...
28
29script:
30 - export GIT_EXEC_PATH=$GIT_DIST_PATH
31 - export PATH=$GIT_DIST_PATH:$PATH
32 - git version
33 - make test-coverage
34 - go vet ./...
35
36after_success:
37 - bash <(curl -s https://codecov.io/bash)