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 f8dc754 commit dae63ea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 23 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ matrix:
# uncomment the following lines to override the default test script
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'x="HTML_Entities" ; VERSION < v"0.7.0-DEV" || (using Pkg); if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("StrTables"); Pkg.clone(pwd()); end ; Pkg.build(x); Pkg.test(x; coverage=true)'
- julia -e 'pkg="HTML_Entities" ; if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("StrTables"); 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("HTML_Entities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'cd(Pkg.dir("HTML_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("HTML_Entities")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'cd(Pkg.dir("HTML_Entities")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
13 changes: 0 additions & 13 deletions Manifest.toml

This file was deleted.

6 changes: 2 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@ desc = "Entities from HTML data tables"
authors = ["ScottPJones <scottjones@alum.mit.edu>"]
keywords = ["Entities", "HTML"]
license = "MIT"
repo-rev = ""
repo-url = "https://github.com/JuliaString/HTML_Entities.jl.git"
uuid = "7693890a-d069-55fe-a829-b4a6d304f0ee"
version = "0.2.3"

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

StrTables = "9700d1a9-a7c8-5760-9816-a99fda30bb8f"
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ 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 = \"HTML_Entities\";
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), pkg); end;
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), pkg); 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(\"HTML_Entities\")"
- C:\projects\julia\bin\julia -e "Pkg.test(\"HTML_Entities\")"

0 comments on commit dae63ea

Please sign in to comment.