aboutsummaryrefslogblamecommitdiffstats
path: root/.travis.yml
blob: 492f6f31cfc4c8fdc3e934f709b980054a44d626 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


            
       
       
 




                       


                 
 






                                        

               
                          
                                                                



                                                                                    

                                                       
 
        

                                   

                                               
                      

       


                                       
                      

              
                                          
language: go

go:
  - 1.7
  - tip

env:
  - GIT_VERSION=master
  - GIT_VERSION=v1.9.3
  - GIT_VERSION=v2.11.0

matrix:
  allow_failures:
    - go: tip

cache:
  directories:
  - $HOME/.git-dist

before_script:
  - export GIT_DIST_PATH=$HOME/.git-dist
  - make build-git

before_install:
  - eval "$(ssh-agent -s)"
  # we only decrypt the SSH key when we aren't in a pull request
  #- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash .travis/install_key.sh; fi'
  #- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then export SSH_AUTH_SOCK="" ; fi'\
  # temporal fix skip of SSH test
  - export SSH_AUTH_SOCK=""
  - git config --global user.email "travis@example.com"
  - git config --global user.name "Travis CI"

install:
  - rm -rf $GOPATH/src/srcd.works
  - mkdir -p $GOPATH/src/srcd.works
  - ln -s $PWD $GOPATH/src/srcd.works/go-git.v4
  - cd $GOPATH/src/srcd.works/go-git.v4
  - go get -v -t ./...

script:
  - export GIT_EXEC_PATH=$GIT_DIST_PATH
  - export PATH=$GIT_DIST_PATH:$PATH
  - git version
  - make test-coverage

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