Skip to content

Commit

Permalink
update TravisCI config
Browse files Browse the repository at this point in the history
  • Loading branch information
dpo committed Oct 4, 2019
1 parent 921f18c commit ec2b5f8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ julia:

matrix:
allow_failures:
- julia: nightly

sudo: required

git:
depth: 9999
- julia: nightly

notifications:
email: false

branches:
only:
- master

before_install:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi

script:
- julia --check-bounds=yes -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("LimitedLDLFactorizations"); Pkg.test("LimitedLDLFactorizations"; coverage=true)'
- master

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

# jobs:
# include:
# - stage: "Documentation"
# julia: 1.0
# os: linux
# script:
# - julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
# Pkg.develop(PackageSpec(path=pwd()))'
# - julia --project=docs/ docs/make.jl
# after_success: skip

2 comments on commit ec2b5f8

@dpo
Copy link
Member Author

@dpo dpo commented on ec2b5f8 Oct 4, 2019

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/4094

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.3.0 -m "<description of version>" ec2b5f8afafb9a39ef9db265fd539874b87a9c28
git push origin v0.3.0

Please sign in to comment.