-
Notifications
You must be signed in to change notification settings - Fork 17
/
.drone.yml
67 lines (55 loc) · 1.52 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
kind: pipeline
name: linux - arm - Julia 1.6.1
platform:
os: linux
arch: arm
steps:
- name: Run tests
image: julia:1.6.1
commands:
- apt-get update -y
- apt-get install -y gcc build-essential
- "julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'"
- "julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'"
- julia --project=test --check-bounds=yes --color=yes test/runtests.jl
trigger:
branch:
- main
---
kind: pipeline
name: linux - arm64 - Julia 1.6
platform:
os: linux
arch: arm64
steps:
- name: Run tests
image: julia:1.6
commands:
- apt-get update -y
- apt-get install -y gcc build-essential
- "julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'"
- "julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'"
- julia --project=test --check-bounds=yes --color=yes test/runtests.jl
trigger:
branch:
- main
---
kind: pipeline
name: linux - amd64 - Julia 1.6 (Alpine)
platform:
os: linux
arch: amd64
steps:
- name: Run tests
image: julia:1.6-alpine3.13
commands:
- ""
- apk add build-base linux-headers
- "julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'"
- "julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'"
- julia --project=test --check-bounds=yes --color=yes test/runtests.jl
trigger:
branch:
- main
...