Skip to content

Commit

Permalink
update travis
Browse files Browse the repository at this point in the history
only build in julia 1
add windows
use default test script
  • Loading branch information
zsunberg committed Oct 20, 2020
1 parent a1d4625 commit 9f2559c
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions .travis.yml
@@ -1,24 +1,15 @@
language: julia

julia:
- 1.0
- 1
os:
- linux
- osx
- windows

notifications:
email:
- sunbergzach@gmail.com

# after_success:
# - julia --project -e 'import Pkg; Pkg.add("Documenter"); include("docs/make.jl")'
# - julia --project -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
script:
- git clone https://github.com/JuliaRegistries/General $(julia -e 'import Pkg; println(joinpath(Pkg.depots1(), "registries", "General"))')
- git clone https://github.com/JuliaPOMDP/Registry $(julia -e 'import Pkg; println(joinpath(Pkg.depots1(), "registries", "JuliaPOMDP"))')
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --project --color=yes --check-bounds=yes -e 'import Pkg; Pkg.build(); Pkg.test("POMDPExamples"; coverage=true)'
# script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --project --color=yes --check-bounds=yes -e 'import Pkg; Pkg.build(); Pkg.test("POMDPExamples"; coverage=true)'

after_success:
- julia --project --color=yes -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
Expand Down

0 comments on commit 9f2559c

Please sign in to comment.