Skip to content

Commit

Permalink
Update .travis.yml (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludvigak committed Apr 17, 2019
1 parent ec4c052 commit 1ead2ed
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,19 @@ notifications:

matrix:
include:
# Linux
- os: linux
julia: 1.1
- os: linux
julia: 1.0
# MacOS: Xcode version fixed at 9.2 due to bug
- os: osx
julia: 1.1
osx_image: xcode9.2
- os: osx
julia: 1.0
osx_image: xcode9.2
# Documentation
- stage: "Documentation"
julia: 1.0
os: linux
Expand All @@ -26,9 +29,8 @@ matrix:
- julia --project=docs/ docs/make.jl
after_success: skip

# Build script is hardwired to gcc8 on MacOS
before_script: # homebrew for mac
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update && brew cask uninstall --force oclint && brew install gcc@8; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install gcc@8; fi

after_success:
# push coverage results to Coveralls
- julia -e 'using Pkg; cd(Pkg.dir("FINUFFT")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
coveralls: true

0 comments on commit 1ead2ed

Please sign in to comment.