diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b2771d5 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,41 @@ +--- +kind: pipeline +name: linux - arm - Julia 1.0 + +platform: + os: linux + arch: arm + +steps: +- name: build + image: julia:1.0 + 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 - arm64 - Julia 1.0 + +platform: + os: linux + arch: arm64 + +steps: +- name: build + image: julia:1.0 + 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 - arm64 - Julia 1.5 + +platform: + os: linux + arch: arm64 + +steps: +- name: build + image: julia:1.5 + commands: + - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"