Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Add script for Drone CI (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano authored and tknopp committed Jan 2, 2020
1 parent 4753b6b commit 207e420
Showing 1 changed file with 33 additions and 0 deletions.
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)'"

...

8 comments on commit 207e420

@DilumAluthge
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: Register Failed
@DilumAluthge, it looks like you are not a publicly listed member/owner in the parent organization (JuliaGraphics).
If you are a member/owner, you will need to change your membership to public. See GitHub Help

@DilumAluthge
Copy link
Contributor

@DilumAluthge DilumAluthge commented on 207e420 Jan 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tknopp @timholy Could you register? We'd like to use Gtk.jl to check that NewPkgEval.jl is working, but that requires changes (specifically 4753b6b) committed to Gtk.jl master since the last release of Gtk.jl.

cc: @maleadt

@DilumAluthge
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also cc-ing @ararslan and @SimonDanisch since they are members of JuliaGraphics.

@tknopp
Copy link
Collaborator

@tknopp tknopp commented on 207e420 Jan 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: "Tag with name 1.1.1 already exists and points to a different commit"

@tknopp
Copy link
Collaborator

@tknopp tknopp commented on 207e420 Jan 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see 5ef61a8

@DilumAluthge
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @tknopp!

Please sign in to comment.