Skip to content

Commit 750a859

Browse files
committed
ChrBase now registered, update scripts
1 parent cd0a893 commit 750a859

3 files changed

Lines changed: 32 additions & 20 deletions

File tree

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ 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 the following lines to override the default test script
2121
script:
2222
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
23-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg) ; if VERSION < v"0.7.0-DEV.5183" ; for n in ("ModuleInterfaceTools", "MurmurHash3", "Format", "StrAPI", "CharSetEncodings"); Pkg.add(n); end ; for n in ("ChrBase", "StrBase", "StrLiterals") ; Pkg.clone("https://github.com/JuliaString/$n.jl") ; end ; Pkg.clone(pwd()) ; end ; Pkg.test("StrFormat"; coverage=true)'
23+
- julia -e 'if VERSION < v"0.7.0-DEV.5183" ; for n in ("ModuleInterfaceTools", "MurmurHash3", "Format", "StrAPI", "CharSetEncodings", "ChrBase"); Pkg.add(n); end ; for n in ("StrBase", "StrLiterals") ; Pkg.clone("https://github.com/JuliaString/$n.jl") ; end ; Pkg.clone(pwd()) ; else; Pkg.up(); end ; Pkg.test("StrFormat"; coverage=true)'
2424
after_success:
2525
# push coverage results to Coveralls
26-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
26+
- julia -e 'cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
2727
# push coverage results to Codecov
28-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
28+
- julia -e 'cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

Project.toml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,24 @@ authors = ["ScottPJones <scottjones@alum.mit.edu>"]
44
keywords = ["Strings", "Literals", "printf", "Format"]
55
license = "MIT"
66
uuid = "a5a47323-cf2a-443b-a747-99a2b29c4966"
7-
repo-url = "https://github.com/JuliaString/StrFormat.jl.git"
8-
repo-rev = ""
9-
version = "0.1.0"
107

118
[deps]
12-
Format = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8"
13-
StrLiterals = "627f7b36-cfa1-4420-8f93-de9d4fe56cdc"
9+
Pkg = "fe1c5a76-5840-53d2-82f9-288dd83ce2ce"
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
12+
13+
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf" # x13gh7y6id3fbmke
14+
MurmurHash3 = "f0d41675-b40b-4ac0-9c24-1938651d8492" # q55ln7mp20ph5cko
15+
PCRE2 = "c9310f65-a42c-5928-aca3-d34f64192029" # d62uhoik906m7n8r
16+
Format = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8" # 9wb580eyjv4k3iej
17+
StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f" # ekt5t6nt8g0cqhjb
18+
LaTeX_Entities = "9927f19a-46ce-5bdd-a20a-f46a78b61e3d" # ok2sdq4u5xwlc6b0
19+
Emoji_Entities = "fd8f23de-bd2f-5c75-921c-0c9ab51355f5" # 4p6o3reehca95put
20+
HTML_Entities = "7693890a-d069-55fe-a829-b4a6d304f0ee" # xp05kd5mamt92yhj
21+
Unicode_Entities = "a8aa15d3-c567-5e9f-b6cc-4b0f97f09cf7" # c1luci97ry8fxdt7
22+
StrAPI = "69e7dfc3-c4d0-5e14-8d95-d6042a05b383" # pyw9o1y3wywo95tt
23+
CharSetEncodings = "cb9422de-a9d8-5b68-86db-ff05833ab307" # 08ylxl46exltiemd
24+
ChrBase = "c13fa7b1-fb91-5a40-8b3c-3aad7fd30002" # lrdfni7si4o797fr
25+
StrBase = "9ae48233-fac8-48c3-9111-9059e0a096a8" # 2v12uwlr0ueale6n
26+
StrRegex = "128fb37e-e16c-4908-8083-6410b01968ef" # iyhlb4unq5ml4g0w
27+
StrLiterals = "627f7b36-cfa1-4420-8f93-de9d4fe56cdc" # 8462oq09ek07knos

appveyor.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,13 @@ build_script:
4242
- IF EXIST .git\shallow (git fetch --unshallow)
4343
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils);
4444
versioninfo(); pkg = \"StrFormat\";
45+
la = (\"ModuleInterfaceTools\", \"MurmurHash3\", \"Format\", \"StrAPI\", \"CharSetEncodings\", \"ChrBase\");
46+
lc = (\"StrBase\", \"StrLiterals\");
4547
if VERSION < v\"0.7.0-DEV.5183\";
46-
for n in (\"ModuleInterfaceTools\", \"MurmurHash3\", \"Format\", \"StrAPI\", \"CharSetEncodings\");
47-
Pkg.add(n);
48-
end;
49-
for n in (\"ChrBase\", \"StrBase\", \"StrLiterals\");
50-
Pkg.clone(\"https://github.com/JuliaString/$n.jl.git\", n);
51-
end;
52-
Pkg.clone(pwd(), \"StrFormat\");
53-
end"
48+
for n in la; Pkg.add(n); end;
49+
for n in lc; Pkg.clone(\"https://github.com/JuliaString/$n.jl.git\", n); end;
50+
Pkg.clone(pwd(), pkg);
51+
else; Pkg.up(); end"
5452

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

0 commit comments

Comments
 (0)