Skip to content

Commit

Permalink
Update for Julia v1.1, drop support for v0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Feb 5, 2019
1 parent cd0f941 commit 5b70e44
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
12 changes: 4 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- nightly
notifications:
email: false
Expand All @@ -28,10 +27,7 @@ git:
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi

## uncomment the following lines to override the default test script
#script:
# - julia -e 'if VERSION < v"0.7.0-DEV.5183" ; Pkg.clone(pwd()); else; using Pkg; Pkg.add(pwd()); Pkg.up(); end ; Pkg.build("PCRE2"); Pkg.test("PCRE2"; coverage=true)'

after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("PCRE2")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("PCRE2")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
# push coverage results to Coveralls & Codecov
- julia -e 'using Pkg; cd(Pkg.dir("PCRE2")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
9 changes: 7 additions & 2 deletions Project.save
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ keywords = ["Strings", "PCRE", "Regex"]
license = "MIT"
name = "PCRE2"
uuid = "c9310f65-a42c-5928-aca3-d34f64192029"
version = "0.2.0"

[deps]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"

BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
julia 0.6
julia 1 2-
BinaryProvider

4 changes: 1 addition & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1.0
- julia_version: 1.1
- julia_version: latest

platform:
Expand All @@ -13,7 +12,6 @@ platform:
## (tests will run but not make your overall status red)
matrix:
allow_failures:
- julia_version: 1.0
- julia_version: latest

branches:
Expand Down

0 comments on commit 5b70e44

Please sign in to comment.