Skip to content

Commit

Permalink
Fixes for Pkg3
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Jun 7, 2018
1 parent ea0413a commit 8fce60f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ git:

## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
#matrix:
# allow_failures:
# - julia: nightly
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 -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); else; using Pkg; Pkg.up(); l=("ChrBase", "StrBase", "StrLiterals"); for n in l; Pkg.rm(n); end; Pkg.add(["https://github.com/JuliaString/$n.jl" for n in l]); Pkg.add(pwd()); end; Pkg.test("StrFormat"; coverage=true)'
- julia -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); else; using Pkg; Pkg.add(pwd()); end; Pkg.test("StrFormat"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
Expand Down
12 changes: 6 additions & 6 deletions REQUIRE
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
julia 0.6
Format 0.6.4
ModuleInterfaceTools 0.1.2
StrAPI 0.1.1
CharSetEncodings 0.1.1
ChrBase 0.1.1
MurmurHash3 0.1.2
StrBase 0.1.1
StrLiterals 0.1.0
StrAPI 0.1.2
CharSetEncodings 0.1.3
ChrBase 0.1.2
MurmurHash3 0.1.3
StrBase 0.1.3
StrLiterals 0.1.2
11 changes: 2 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,8 @@ install:
build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils);
versioninfo();
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), \"StrFormat\");
else; using Pkg; Pkg.up();
l = ("ChrBase", "StrBase", "StrLiterals");
for n in l; Pkg.rm(n); end;
Pkg.add(["https://github.com/JuliaString/$n.jl" for n in l]);
Pkg.add(pwd());
end"
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg, InteractiveUtils);
versioninfo(); Pkg.clone(pwd(), \"StrFormat\")"

test_script:
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg); Pkg.test(\"StrFormat\")"

0 comments on commit 8fce60f

Please sign in to comment.