Skip to content

Commit 2f09ec9

Browse files
committed
Remove REQUIRE and update CI.
1 parent 2616ce0 commit 2f09ec9

File tree

3 files changed

+21
-27
lines changed

3 files changed

+21
-27
lines changed

.travis.yml

+16-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
1-
# Documentation: http://docs.travis-ci.com/user/languages/julia/
21
language: julia
32
os:
43
- linux
54
- osx
65
julia:
7-
- 0.6
8-
- 0.7
96
- 1.0
107
- nightly
118
notifications:
129
email: false
1310
matrix:
1411
fast_finish: true
12+
allow_failures:
13+
- julia: nightly
14+
# uncomment the following lines to override the default test script
15+
#script:
16+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
17+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("FilePaths"); Pkg.test("FilePaths"; coverage=true)'
1518
after_success:
16-
- |
17-
julia -e '
18-
VERSION >= v"0.7.0-DEV.3656" && using Pkg
19-
VERSION >= v"0.7.0-DEV.5183" || cd(Pkg.dir("FilePaths"))
20-
Pkg.add("Coverage"); using Coverage
21-
Codecov.submit(process_folder())'
19+
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
20+
# jobs:
21+
# include:
22+
# - stage: "Documentation"
23+
# julia: 1.0
24+
# os: linux
25+
# script:
26+
# - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
27+
# - julia --project=docs/ docs/make.jl
28+
# after_success: skip

REQUIRE

-5
This file was deleted.

appveyor.yml

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
environment:
22
matrix:
3-
- julia_version: 0.6
4-
- julia_version: 0.7
5-
- julia_version: 1
6-
- julia_version: latest
3+
- julia_version: 1.0
4+
- julia_version: nightly
75

86
platform:
9-
- x86
10-
- x64
11-
12-
## uncomment the following lines to allow failures on nightly julia
13-
## (tests will run but not make your overall status red)
14-
#matrix:
15-
# allow_failures:
16-
# - julia_version: latest
7+
- x86 # 32-bit
8+
- x64 # 64-bit
179

1810
branches:
1911
only:
@@ -35,4 +27,4 @@ build_script:
3527

3628
test_script:
3729
- echo "%JL_TEST_SCRIPT%"
38-
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
30+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"

0 commit comments

Comments
 (0)