Leon
c8fa546a23
All checks were successful
continuous-integration/drone/push Build is passing
Changed image to rust:alpine We don't have to specifically build for rust 1.66.1 (what RL9 currently uses), since we can build it with a runner and deploy the runner, with all libraries statically linked.
28 lines
401 B
YAML
28 lines
401 B
YAML
kind: pipeline
|
|
name: test-on-amd64
|
|
|
|
platform:
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: test
|
|
image: rust:alpine
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all
|
|
|
|
---
|
|
kind: pipeline
|
|
name: test-on-arm64
|
|
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: test
|
|
image: rust:alpine
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all |