Skip to content

Commit

Permalink
Update Project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Jun 5, 2018
1 parent d620fa3 commit 95e1f39
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ matrix:
# uncomment the following lines to override the default test script
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'mit = "ModuleInterfaceTools"; mh3 = "MurmurHash3"; loc = "https://github.com/JuliaString"; sb="StrBase"; sl="StrLiterals"; la = ("Format", "StrAPI", "CharSetEncodings", "ChrBase"); if VERSION < v"0.7.0-DEV.5183"; cln = Pkg.clone; cln("$loc/$mit.jl"); cln("$loc/$mh3.jl"); for n in la; Pkg.add(n); end; cln("$loc/$sb.jl"); cln("$loc/$sl.jl"); cln(pwd()); else; using Pkg; cln(a)=Pkg.add("$loc/$a.jl.git"); cln(mit); cln(mh3); for n in la; cln(n); end; cln(sb); cln(sl); end; Pkg.test("StrFormat"; coverage=true)'
- julia -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); else; using Pkg; Pkg.up(); end; Pkg.test("StrFormat"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
Expand Down
10 changes: 8 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,11 @@ Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

Format = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8" # 9wb580eyjv4k3iej
StrLiterals = "627f7b36-cfa1-4420-8f93-de9d4fe56cdc" # 8462oq09ek07knos
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf"
StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f" # ekt5t6nt8g0cqhjb
Format = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8" # 9wb580eyjv4k3iej
MurmurHash3 = "b10b62ed-fbae-5ea5-b934-abaf0477b71d"
StrAPI = "69e7dfc3-c4d0-5e14-8d95-d6042a05b383"
ChrBase = "c13fa7b1-fb91-5a40-8b3c-3aad7fd30002"
StrBase = "e79e7a6a-7bb1-5a4d-9d64-da657b06f53a"
StrLiterals = "68059f60-971f-57ff-a2d0-18e7de9ccc84" # 8462oq09ek07knos
3 changes: 1 addition & 2 deletions REQUIRE
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
julia 0.6
Format
ChrBase
#StrLiterals
StrLiterals
17 changes: 3 additions & 14 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,9 @@ 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(); mit = \"ModuleInterfaceTools\"; mh3 = \"MurmurHash3\";
loc = \"https://github.com/JuliaString\"; sb = \"StrBase\"; sl = \"StrLiterals\";
la = (\"Format\", \"StrAPI\", \"CharSetEncodings\", \"ChrBase\");
if VERSION < v\"0.7.0-DEV.5183\";
cln(a) = Pkg.clone(\"$loc/$a.jl.git\", a);
cln(mit); cln(mh3);
for n in la; Pkg.add(n); end;
cln(sb); cln(sl);
Pkg.clone(pwd(), \"StrFormat\");
else;
using Pkg;
cln(a) = Pkg.add(\"$loc/$a.jl.git\");
cln(mit); cln(mh3); for n in la; cln(n); end; cln(sb); cln(sl);
end"
versioninfo();
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), \"StrFormat\");
else; using Pkg; Pkg.up(); end"

test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"StrFormat\")"

0 comments on commit 95e1f39

Please sign in to comment.