Skip to content

Commit

Permalink
ChrBase now registered, update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Jun 1, 2018
1 parent 35e90b5 commit b499440
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 113 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ 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 'pkg="Emoji_Entities"; VERSION < v"0.7.0-DEV" || (using Pkg) ; if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("StrTables"); Pkg.add("JSON"); Pkg.clone(pwd()); end ; Pkg.build(pkg); Pkg.test(pkg; coverage=true)'
- julia -e 'pkg="Emoji_Entities"; if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("StrTables"); Pkg.add("JSON"); Pkg.clone(pwd()); else; Pkg.up(); end ; Pkg.build(pkg); Pkg.test(pkg; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("Emoji_Entities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'cd(Pkg.dir("Emoji_Entities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("Emoji_Entities")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'cd(Pkg.dir("Emoji_Entities")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
95 changes: 0 additions & 95 deletions Manifest.toml

This file was deleted.

9 changes: 4 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ desc = "Entities from Emoji data tables"
keywords = ["Entities", "Emoji"]
license = "MIT"
name = "Emoji_Entities"
repo-rev = ""
repo-url = "https://github.com/JuliaString/Emoji_Entities.jl.git"
uuid = "fd8f23de-bd2f-5c75-921c-0c9ab51355f5"
version = "0.2.3"

[deps]
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
Pkg = "fe1c5a76-5840-53d2-82f9-288dd83ce2ce"
StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f"

JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
14 changes: 7 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ environment:

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

branches:
only:
Expand Down Expand Up @@ -40,13 +40,13 @@ 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 Pkg, InteractiveUtils);
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils);
versioninfo(); pkg=\"Emoji_Entities\";
if VERSION < v\"0.7.0-DEV.5183\";
Pkg.add(\"StrTables\"); Pkg.add(\"JSON\");
Pkg.clone(pwd(), pkg);
end;
else; Pkg.up(); end;
Pkg.build(pkg)"

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

0 comments on commit b499440

Please sign in to comment.