Skip to content

Commit

Permalink
Merge pull request #182 from FluxML/cl-travis
Browse files Browse the repository at this point in the history
update travis
  • Loading branch information
CarloLucibello authored Mar 2, 2020
2 parents 8a4ec87 + fd00161 commit ac5101b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
## Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia

os:
- linux
- osx
# - windows

julia:
- 1.0
- 1.1
- 1.3
- nightly

matrix:
allow_failures:
- julia: nightly

notifications:
email: false

git:
depth: 99999999

env:
# Disable test fuzzing for the moment, as we're a little too slow for Travis
- NNLIB_TEST_FUZZING=false

# Submit to Codecov
after_success:
- if [[ $TRAVIS_JULIA_VERSION = 1.1 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then
julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())';
fi
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())';

2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "NNlib"
uuid = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
version = "0.6.5"
version = "0.6.6"

[deps]
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ test_script:
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

after_test:
- C:\julia\bin\julia -e "using Pkg; Pkg.add(\"Coverage\"); using Coverage; Codecov.submit(process_folder())"
- C:\julia\bin\julia -e "using Pkg; Pkg.add(\"Coverage\"); using Coverage; Codecov.submit(process_folder())"

2 comments on commit ac5101b

@CarloLucibello
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/10414

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

Please sign in to comment.