-
Notifications
You must be signed in to change notification settings - Fork 19
/
.drone.yml
35 lines (29 loc) · 1.02 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
---
kind: pipeline
name: linux - arm - Julia 1.3
platform:
os: linux
arch: arm
steps:
- name: build
image: julia:1.3
commands:
- uname -a
- apt-get update
- apt-get install -y libglib2.0-0 libx11-6 xvfb libx11-xcb-dev libxcomposite-dev libxcursor-dev libxi-dev libxtst-dev libnss3 libgdk-pixbuf2.0-0 libgtk-3-dev libxss-dev libasound2
- "xvfb-run julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
---
kind: pipeline
name: linux - arm64 - Julia 1.3
platform:
os: linux
arch: arm64
steps:
- name: build
image: julia:1.3
commands:
- uname -a
- apt-get update
- apt-get install -y libglib2.0-0 libx11-6 xvfb libx11-xcb-dev libxcomposite-dev libxcursor-dev libxi-dev libxtst-dev libnss3 libgdk-pixbuf2.0-0 libgtk-3-dev libxss-dev libasound2
- "xvfb-run julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
...