Skip to content

Commit

Permalink
Add scripts for Drone CI
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Feb 7, 2020
1 parent bcccfe2 commit c3fac71
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
local Pipeline(os, arch, version) = {
kind: "pipeline",
name: os+" - "+arch+" - Julia "+version,
platform: {
os: os,
arch: arch
},
steps: [
{
name: "build",
image: "julia:"+version,
commands: [
"apt-get update",
"apt-get install -y xvfb xauth",
"xvfb-run julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
]
}
]
};

[
Pipeline("linux", "arm", "1.3"),
Pipeline("linux", "arm64", "1.3")
]
33 changes: 33 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
kind: pipeline
name: linux - arm - Julia 1.3

platform:
os: linux
arch: arm

steps:
- name: build
image: julia:1.3
commands:
- apt-get update
- apt-get install -y xvfb xauth
- "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:
- apt-get update
- apt-get install -y xvfb xauth
- "xvfb-run julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"

...

0 comments on commit c3fac71

Please sign in to comment.