Skip to content

Commit ed993b8

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

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.drone.yml

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