-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from JuliaString/spj/update
Improve handling of Project Gutenberg test books, including ones with Latin-1 encoding
- Loading branch information
Showing
7 changed files
with
281 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
kind: pipeline | ||
name: linux - arm64 - Julia 1.5 | ||
|
||
platform: | ||
os: linux | ||
arch: arm64 | ||
|
||
steps: | ||
- name: build | ||
image: julia:1.5 | ||
commands: | ||
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" | ||
|
||
--- | ||
kind: pipeline | ||
name: linux - arm - Julia 1.6 | ||
|
||
platform: | ||
os: linux | ||
arch: arm | ||
|
||
steps: | ||
- name: build | ||
image: julia:1.6 | ||
commands: | ||
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" | ||
|
||
--- | ||
kind: pipeline | ||
name: linux - arm64 - Julia 1.6 | ||
|
||
platform: | ||
os: linux | ||
arch: arm64 | ||
|
||
steps: | ||
- name: build | ||
image: julia:1.6 | ||
commands: | ||
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: CI | ||
on: | ||
- push | ||
- pull_request | ||
jobs: | ||
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.5' | ||
- '1.6' | ||
- 'nightly' | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
- windows-latest | ||
arch: | ||
- x64 | ||
- x86 | ||
exclude: | ||
- os: macOS-latest | ||
arch: x86 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- uses: actions/cache@v1 | ||
env: | ||
cache-name: cache-artifacts | ||
with: | ||
path: ~/.julia/artifacts | ||
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | ||
restore-keys: | | ||
${{ runner.os }}-test-${{ env.cache-name }}- | ||
${{ runner.os }}-test- | ||
${{ runner.os }}- | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["ScottPJones <[email protected]>"] | |
keywords = ["Strings", "Characters", "Formatting", "Intern", "Unicode", "Regex"] | ||
license = "MIT" | ||
uuid = "7bddbee9-b4ee-5d4f-bf0b-c84b4398bbf6" | ||
version = "1.0.3" | ||
version = "1.1.0" | ||
|
||
[deps] | ||
ModuleInterfaceTools = "5cb8414e-7aab-5a03-a681-351269c074bf" | ||
|
@@ -41,21 +41,21 @@ Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b" | |
test = ["Test", "REPL", "BenchmarkTools", "Serialization"] | ||
|
||
[compat] | ||
julia = "^1.0.0" | ||
PCRE2 = "1.0.2" | ||
Format = "1.1.0" | ||
ModuleInterfaceTools = "1.0.1" | ||
julia = "^1.5" | ||
PCRE2 = "^1.0.2" | ||
Format = "^1.3.1" | ||
ModuleInterfaceTools = "^1.0.1" | ||
InternedStrings = "0.7.0" | ||
StrAPI = "1" | ||
StrBase = "1.0.4" | ||
StrAPI = "^1.1" | ||
StrBase = "^1.0.5" | ||
StrTables = "1" | ||
StrEntities = "1" | ||
StrFormat = "1" | ||
StrRegex = "1.0.1" | ||
StrLiterals = "1" | ||
ChrBase = "1.0.1" | ||
Emoji_Entities = "1" | ||
HTML_Entities = "1" | ||
LaTeX_Entities = "1" | ||
Unicode_Entities = "1" | ||
MurmurHash3 = "^1.0.3" | ||
StrEntities = "^1.0.1" | ||
StrFormat = "^1.0.1" | ||
StrRegex = "^1.1.1" | ||
StrLiterals = "^1.1" | ||
ChrBase = "^1.0.3" | ||
MurmurHash3 = "^1.2" | ||
Emoji_Entities = "^1.0.3" | ||
HTML_Entities = "^1.0.1" | ||
LaTeX_Entities = "^1.0.2" | ||
Unicode_Entities = "^1.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
044e6ca
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register()
044e6ca
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/36975
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: