Skip to content

Commit 465b993

Browse files
committed
ChrBase now registered, update scripts
1 parent 82b8df1 commit 465b993

File tree

4 files changed

+18
-35
lines changed

4 files changed

+18
-35
lines changed

.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); x="Unicode_Entities" ; if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("StrTables"); Pkg.clone(pwd()); end ; Pkg.build(x) ; Pkg.test(x; coverage=true)'
23+
- julia -e 'x="Unicode_Entities" ; if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("StrTables"); Pkg.clone(pwd()); else; Pkg.up(); end ; Pkg.build(x) ; Pkg.test(x; 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("Unicode_Entities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
26+
- julia -e 'cd(Pkg.dir("Unicode_Entities")); 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("Unicode_Entities")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
28+
- julia -e 'cd(Pkg.dir("Unicode_Entities")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

Manifest.toml

Lines changed: 0 additions & 16 deletions
This file was deleted.

Project.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ desc = "Entities from Unicode data tables"
33
keywords = ["Entities", "Unicode"]
44
license = "MIT"
55
name = "Unicode_Entities"
6-
repo-rev = ""
7-
repo-url = "https://github.com/JuliaString/Unicode_Entities.jl.git"
86
uuid = "a8aa15d3-c567-5e9f-b6cc-4b0f97f09cf7"
9-
version = "0.2.3"
107

118
[deps]
12-
Pkg = "fe1c5a76-5840-53d2-82f9-288dd83ce2ce"
9+
Pkg = "fe1c5a76-5840-53d2-82f9-288dd83ce2ce"
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
12+
13+
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
1314
StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f"
14-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
15-
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

appveyor.yml

Lines changed: 7 additions & 7 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:
@@ -40,10 +40,10 @@ install:
4040
build_script:
4141
# Need to convert from shallow to complete for Pkg.clone to work
4242
- IF EXIST .git\shallow (git fetch --unshallow)
43-
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg, InteractiveUtils);
43+
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils);
4444
versioninfo(); pkg = \"Unicode_Entities\";
45-
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), pkg); end;
45+
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), pkg); else; Pkg.up(); end;
4646
Pkg.build(pkg)"
4747

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

0 commit comments

Comments
 (0)