Skip to content

Commit 8105807

Browse files
committed
Work around Pkg3 changes
1 parent e1e89e6 commit 8105807

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ git:
1313

1414
## uncomment the following lines to allow failures on nightly julia
1515
## (tests will run but not make your overall status red)
16-
#matrix:
17-
# allow_failures:
18-
# - julia: nightly
16+
matrix:
17+
allow_failures:
18+
- julia: nightly
1919

2020
## uncomment and modify the following lines to manually install system packages
2121
#addons:
@@ -27,7 +27,7 @@ git:
2727

2828
## uncomment the following lines to override the default test script
2929
script:
30-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); Pkg.clone(pwd()); Pkg.test("ModuleInterfaceTools"; coverage=true)'
30+
- julia -e 'f = VERSION < v"0.7.0-DEV" ; f || (using Pkg) ; const clone = ifelse(f, Pkg.clone, Pkg.add) ; clone(pwd()); Pkg.test("ModuleInterfaceTools"; coverage=true)'
3131
after_success:
3232
# push coverage results to Coveralls
3333
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("ModuleInterfaceTools")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

Project.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@ desc = "Tools to help build a consistent API across various packages, use it, an
22
keywords = ["package", "module", "API"]
33
license = "MIT"
44
name = "ModuleInterfaceTools"
5-
uuid = "5cb8414e-7aab-5a03-a681-351269c074bf"
5+
deps = ["Test"]
6+
git-tree-sha1 = "b4fc455cbdc313ecd8c08173153bf8abfcb9e5a6"
67
repo = "https://github.com/JuliaString/ModuleInterfaceTools.jl.git"
8+
repo-rev = ""
9+
repo-url = "/s/ModuleInterfaceTools.jl"
10+
uuid = "5cb8414e-7aab-5a03-a681-351269c074bf"
11+
version = "0.1.0+"

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ environment:
77

88
## uncomment the following lines to allow failures on nightly julia
99
## (tests will run but not make your overall status red)
10-
#matrix:
11-
# allow_failures:
12-
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
13-
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
10+
matrix:
11+
allow_failures:
12+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
13+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
1414

1515
branches:
1616
only:

0 commit comments

Comments
 (0)