Skip to content

Commit

Permalink
Remove REQUIRE and update CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
rofinn committed Jul 12, 2019
1 parent 2616ce0 commit 2f09ec9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 27 deletions.
25 changes: 16 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- nightly
notifications:
email: false
matrix:
fast_finish: true
allow_failures:
- julia: nightly
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd()); Pkg.build("FilePaths"); Pkg.test("FilePaths"; coverage=true)'
after_success:
- |
julia -e '
VERSION >= v"0.7.0-DEV.3656" && using Pkg
VERSION >= v"0.7.0-DEV.5183" || cd(Pkg.dir("FilePaths"))
Pkg.add("Coverage"); using Coverage
Codecov.submit(process_folder())'
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
# jobs:
# include:
# - stage: "Documentation"
# julia: 1.0
# os: linux
# script:
# - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
# - julia --project=docs/ docs/make.jl
# after_success: skip
5 changes: 0 additions & 5 deletions REQUIRE

This file was deleted.

18 changes: 5 additions & 13 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1
- julia_version: latest
- julia_version: 1.0
- julia_version: nightly

platform:
- x86
- x64

## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
#matrix:
# allow_failures:
# - julia_version: latest
- x86 # 32-bit
- x64 # 64-bit

branches:
only:
Expand All @@ -35,4 +27,4 @@ build_script:

test_script:
- echo "%JL_TEST_SCRIPT%"
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"

0 comments on commit 2f09ec9

Please sign in to comment.