Skip to content

Commit

Permalink
Merge 91e3486 into 239b7d3
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed May 6, 2020
2 parents 239b7d3 + 91e3486 commit da443c2
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 48 deletions.
17 changes: 0 additions & 17 deletions .cirrus.yml

This file was deleted.

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: [
"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.0"),
Pipeline("linux", "arm", "1.4"),
Pipeline("linux", "arm64", "1.0"),
Pipeline("linux", "arm64", "1.4")
]
50 changes: 23 additions & 27 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
kind: pipeline
name: linux-arm-1.0
name: linux - arm - Julia 1.0

platform:
os: linux
Expand All @@ -9,29 +10,25 @@ steps:
- name: build
image: julia:1.0
commands:
- uname -a
- julia --project=. -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'

#---
#
#kind: pipeline
#name: linux-arm-1.1
#
#platform:
# os: linux
# arch: arm
#
#steps:
#- name: build
# image: julia:1.1
# commands:
# - uname -a
# - julia --project=. -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
- "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 - arm - Julia 1.4

platform:
os: linux
arch: arm

steps:
- name: build
image: julia:1.4
commands:
- "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-aarch64-1.0
name: linux - arm64 - Julia 1.0

platform:
os: linux
Expand All @@ -41,21 +38,20 @@ steps:
- name: build
image: julia:1.0
commands:
- uname -a
- julia --project=. -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
- "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-aarch64-1.1
name: linux - arm64 - Julia 1.4

platform:
os: linux
arch: arm64

steps:
- name: build
image: julia:1.1
image: julia:1.4
commands:
- uname -a
- julia --project=. -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"

...
15 changes: 13 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,28 @@ sudo: false
os:
- linux
- osx
- freebsd
julia:
- 1.0
- 1.1
- 1.2
- 1.4
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false

branches:
only:
- master
- gh-pages # For building documentation
- /^testing-.*$/ # testing branches
- /^v[0-9]+\.[0-9]+\.[0-9]+$/ # version tags

cache:
directories:
- $HOME/.julia/artifacts

after_success:
# push coverage results to Coveralls and Codecov
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
Expand Down
6 changes: 4 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
environment:
matrix:
- julia_version: 1.0
- julia_version: 1.1
- julia_version: 1.2
- julia_version: 1.4
- julia_version: latest

platform:
Expand All @@ -20,6 +19,9 @@ branches:
- master
- /release-.*/

cache:
- '%USERPROFILE%\.julia\artifacts'

notifications:
- provider: Email
on_build_success: false
Expand Down

0 comments on commit da443c2

Please sign in to comment.