30 lines
634 B
YAML
30 lines
634 B
YAML
![]() |
---
|
||
|
kind: pipeline
|
||
|
name: linux - arm - Julia {{VERSION}}
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: arm
|
||
|
|
||
|
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)'"
|
||
|
|
||
|
---
|
||
|
kind: pipeline
|
||
|
name: linux - arm64 - Julia {{VERSION}}
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: arm64
|
||
|
|
||
|
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)'"
|
||
|
|
||
|
...
|