Skip to content
Snippets Groups Projects
.travis.yml 614 B
Newer Older
  • Learn to ignore specific revisions
  • Serge Bazanski's avatar
    Serge Bazanski committed
    dist: trusty
    
    addons:
      apt:
        sources:
          - ubuntu-toolchain-r-test
        packages:
          - wget
          - pkg-config
          - zip
          - g++
          - zlib1g-dev
          - unzip
          - python
    
    
    Oliver Herms's avatar
    Oliver Herms committed
    language: go
    
    go:
      - 1.11.1
    
    Oliver Herms's avatar
    Oliver Herms committed
    
    
    Oliver Herms's avatar
    Oliver Herms committed
    script:
    
    Serge Bazanski's avatar
    Serge Bazanski committed
    - mkdir -p $HOME/gopath/src/github.com/bio-routing/
    - ln -s $TRAVIS_BUILD_DIR $HOME/gopath/src/github.com/bio-routing/bio-rd || true
    
    Oliver Herms's avatar
    Oliver Herms committed
    - cd $HOME/gopath/src/github.com/bio-routing/bio-rd
    - go test -v -cover -coverprofile=coverage.out ./...
    - go install github.com/bio-routing/bio-rd/vendor/github.com/q3k/goveralls/
    - $HOME/gopath/bin/goveralls -coverprofile=coverage.out -merge=false