Skip to content

Commit 027da44

Browse files
committed
Add .drone.yml for ARM testing
1 parent 5cd8236 commit 027da44

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.drone.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
kind: pipeline
3+
name: linux - arm64 - Julia 1.5
4+
5+
platform:
6+
os: linux
7+
arch: arm64
8+
9+
steps:
10+
- name: build
11+
image: julia:1.5
12+
commands:
13+
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
14+
---
15+
kind: pipeline
16+
name: linux - arm64 - Julia 1.0
17+
18+
platform:
19+
os: linux
20+
arch: arm64
21+
22+
steps:
23+
- name: build
24+
image: julia:1.0
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 - arm - Julia 1.0
31+
32+
platform:
33+
os: linux
34+
arch: arm
35+
36+
steps:
37+
- name: build
38+
image: julia:1.0
39+
commands:
40+
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"

0 commit comments

Comments
 (0)