Skip to content

Commit b767a0d

Browse files
committed
Add .drone.yml for ARM testing
1 parent 77855d5 commit b767a0d

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

.drone.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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 - arm - Julia 1.5
18+
platform:
19+
os: linux
20+
arch: arm
21+
22+
steps:
23+
- name: build
24+
image: julia:1.5
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.0
31+
32+
platform:
33+
os: linux
34+
arch: arm64
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)'"
41+
42+
---
43+
kind: pipeline
44+
name: linux - arm64 - Julia 1.5
45+
46+
platform:
47+
os: linux
48+
arch: arm64
49+
50+
steps:
51+
- name: build
52+
image: julia:1.5
53+
commands:
54+
- "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)