File tree Expand file tree Collapse file tree 4 files changed +71
-2
lines changed Expand file tree Collapse file tree 4 files changed +71
-2
lines changed Original file line number Diff line number Diff line change @@ -11,3 +11,30 @@ steps:
1111 image : julia:1.5
1212 commands :
1313 - " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
14+
15+ ---
16+ kind : pipeline
17+ name : linux - arm - Julia 1.6
18+ platform :
19+ os : linux
20+ arch : arm
21+
22+ steps :
23+ - name : build
24+ image : julia:1.6
25+ commands :
26+ - " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
27+
28+ ---
29+ kind : pipeline
30+ name : linux - arm64 - Julia 1.6
31+
32+ platform :
33+ os : linux
34+ arch : arm64
35+
36+ steps :
37+ - name : build
38+ image : julia:1.6
39+ commands :
40+ - " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ - push
4+ - pull_request
5+ jobs :
6+ test :
7+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ fail-fast : false
11+ matrix :
12+ version :
13+ - ' 1.5'
14+ - ' nightly'
15+ os :
16+ - ubuntu-latest
17+ - macOS-latest
18+ - windows-latest
19+ arch :
20+ - x64
21+ - x86
22+ exclude :
23+ - os : macOS-latest
24+ arch : x86
25+ steps :
26+ - uses : actions/checkout@v2
27+ - uses : julia-actions/setup-julia@v1
28+ with :
29+ version : ${{ matrix.version }}
30+ arch : ${{ matrix.arch }}
31+ - uses : actions/cache@v1
32+ env :
33+ cache-name : cache-artifacts
34+ with :
35+ path : ~/.julia/artifacts
36+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
37+ restore-keys : |
38+ ${{ runner.os }}-test-${{ env.cache-name }}-
39+ ${{ runner.os }}-test-
40+ ${{ runner.os }}-
41+ - uses : julia-actions/julia-buildpkg@v1
42+ - uses : julia-actions/julia-runtest@v1
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ authors = ["ScottPJones <scottjones@alum.mit.edu>"]
44keywords = [" Strings" ]
55license = " MIT"
66uuid = " e79e7a6a-7bb1-5a4d-9d64-da657b06f53a"
7- version = " 1.0.5 "
7+ version = " 1.1.0 "
88
99[deps ]
1010Unicode = " 4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ is_ascii(str::SubString{<:Str{C}}) where {C<:ASCII_Union} =
213213
214214is_ascii (vec:: Vector{T} ) where {T<: CodeUnitTypes } =
215215 (cnt = sizeof (vec)) == 0 ||
216- (@preserve str _check_mask_ul (pointer (vec), cnt, _ascii_mask (T)))
216+ (@preserve vec _check_mask_ul (pointer (vec), cnt, _ascii_mask (T)))
217217
218218is_ascii (str:: Str{C} ) where {C<: ASCII_Union } =
219219 (cnt = sizeof (str)) == 0 ||
You can’t perform that action at this time.
0 commit comments