Skip to content

Commit 58c2d74

Browse files
committed
Update Travis, Appveyor and CodeCov configuration
1 parent 869e8ea commit 58c2d74

File tree

3 files changed

+14
-22
lines changed

3 files changed

+14
-22
lines changed

appveyor.yml renamed to .appveyor.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
## Documentation: https://github.com/JuliaCI/Appveyor.jl
2+
13
environment:
24
matrix:
35
- julia_version: 0.7
46
- julia_version: 1.0
5-
- julia_version: latest
7+
- julia_version: nightly
68

79
platform:
810
- x86 # 32-bit
@@ -12,8 +14,7 @@ platform:
1214
## (tests will run but not make your overall status red)
1315
#matrix:
1416
# allow_failures:
15-
# - julia_version: 1.0
16-
# - julia_version: latest
17+
# - julia_version: nightly
1718

1819
#branches:
1920
# only:

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
comment: false
1+
# comment: false

.travis.yml

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,28 @@
11
## Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
23
language: julia
4+
35
os:
46
- linux
57
- osx
8+
69
julia:
710
- 0.7
811
- 1.0
912
- nightly
10-
notifications:
11-
email: false
12-
git:
13-
depth: 99999999
1413

1514
## uncomment the following lines to allow failures on nightly julia
1615
## (tests will run but not make your overall status red)
1716
#matrix:
1817
# allow_failures:
19-
# - julia: nightly
20-
21-
## uncomment and modify the following lines to manually install system packages
22-
#addons:
23-
# apt: # apt-get for linux
24-
# packages:
25-
# - gfortran
26-
#before_script: # homebrew for mac
27-
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
18+
# - julia: nightly
19+
# fast_finish: true
2820

29-
## uncomment the following lines to override the default test script
30-
#script:
31-
# - julia -e '...'
21+
notifications:
22+
email: false
3223

3324
after_success:
34-
# push coverage results to Coveralls
35-
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
3625
# push coverage results to Codecov
3726
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
27+
# push coverage results to Coveralls
28+
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

0 commit comments

Comments
 (0)