Skip to content

Commit

Permalink
fixing travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Ortner committed Feb 16, 2019
1 parent 5a1da97 commit 2643c5a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
# - nightly
notifications:
email: false
Expand All @@ -18,20 +20,20 @@ git:
# - julia: nightly

# uncomment and modify the following lines to manually install system packages
addons:
apt: # apt-get for linux
packages:
- gfortran
# addons:
# apt: # apt-get for linux
# packages:
# - gfortran

# before_install:
# - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew update; fi
# - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew install gcc; fi

## uncomment the following lines to override the default test script
script:
- julia -e 'Pkg.clone(pwd()); Pkg.build("NeighbourLists"); Pkg.test("NeighbourLists"; coverage=true)'
# script:
# - julia -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("NeighbourLists"); Pkg.test("NeighbourLists"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("NeighbourLists")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# - julia -e 'using Pkg; cd(Pkg.dir("NeighbourLists")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("NeighbourLists")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
# - julia -e 'using Pkg; cd(Pkg.dir("NeighbourLists")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
2 changes: 2 additions & 0 deletions test/REQUIRE
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
NearestNeighbors
Distances
ForwardDiff
Printf

0 comments on commit 2643c5a

Please sign in to comment.