Skip to content

Commit

Permalink
Update .travis.yml to new Pkg syntax for submitting coverage info (#81)
Browse files Browse the repository at this point in the history
and start testing on Julia 1.3
  • Loading branch information
andreasnoack authored Dec 3, 2019
1 parent dc14e84 commit beaedd5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- julia_version: 1
- julia_version: 1.2
- julia_version: 1.3
- julia_version: nightly

platform:
Expand Down
19 changes: 10 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
language: julia

os:
- linux
- osx

julia:
- 1.0
- 1.2
- 1.3
- nightly

notifications:
email: false
# matrix:
# 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 --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("StatsFuns"); Pkg.test("StatsFuns"; coverage=true)'

matrix:
allow_failures:
- julia: nightly

after_success:
- julia -e 'using Pkg; cd(Pkg.dir("StatsFuns")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'

2 comments on commit beaedd5

@andreasnoack
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/6185

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.1 -m "<description of version>" beaedd59dc14262b7233f4d388c322e06aadc12c
git push origin v0.9.1

Please sign in to comment.