Skip to content

Commit 8f73c20

Browse files
committed
Update CI, add .drone.yml for ARM
1 parent 077b721 commit 8f73c20

File tree

3 files changed

+56
-13
lines changed

3 files changed

+56
-13
lines changed

.drone.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,30 +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+
1415
---
1516
kind: pipeline
16-
name: linux - arm64 - Julia 1.0
17-
17+
name: linux - arm - Julia 1.6
1818
platform:
1919
os: linux
20-
arch: arm64
20+
arch: arm
2121

2222
steps:
2323
- name: build
24-
image: julia:1.0
24+
image: julia:1.6
2525
commands:
2626
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
2727

2828
---
2929
kind: pipeline
30-
name: linux - arm - Julia 1.0
30+
name: linux - arm64 - Julia 1.6
3131

3232
platform:
3333
os: linux
34-
arch: arm
34+
arch: arm64
3535

3636
steps:
3737
- name: build
38-
image: julia:1.0
38+
image: julia:1.6
3939
commands:
4040
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"

.github/workflows/ci.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
- '1.6'
15+
- 'nightly'
16+
os:
17+
- ubuntu-latest
18+
- macOS-latest
19+
- windows-latest
20+
arch:
21+
- x64
22+
- x86
23+
exclude:
24+
- os: macOS-latest
25+
arch: x86
26+
steps:
27+
- uses: actions/checkout@v2
28+
- uses: julia-actions/setup-julia@v1
29+
with:
30+
version: ${{ matrix.version }}
31+
arch: ${{ matrix.arch }}
32+
- uses: actions/cache@v1
33+
env:
34+
cache-name: cache-artifacts
35+
with:
36+
path: ~/.julia/artifacts
37+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38+
restore-keys: |
39+
${{ runner.os }}-test-${{ env.cache-name }}-
40+
${{ runner.os }}-test-
41+
${{ runner.os }}-
42+
- uses: julia-actions/julia-buildpkg@v1
43+
- uses: julia-actions/julia-runtest@v1

Project.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = ["ScottPJones <[email protected]>"]
44
keywords = ["Strings"]
55
license = "MIT"
66
uuid = "e79e7a6a-7bb1-5a4d-9d64-da657b06f53a"
7-
version = "1.0.4"
7+
version = "1.0.5"
88

99
[deps]
1010
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
@@ -24,9 +24,9 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2424
test = ["Test", "Random"]
2525

2626
[compat]
27-
julia = "^1.0.0"
28-
ModuleInterfaceTools = "^1.0.0"
29-
MurmurHash3 = "^1.0.3"
30-
StrAPI = "^1.0.0"
27+
julia = "1"
28+
ModuleInterfaceTools = "1"
29+
MurmurHash3 = "^1.2"
30+
StrAPI = "^1.1"
3131
ChrBase = "^1.0.1"
32-
CharSetEncodings = "^1.0.0"
32+
CharSetEncodings = "1"

0 commit comments

Comments
 (0)