28 lines
374 B
YAML
28 lines
374 B
YAML
kind: pipeline
|
|
name: test-on-amd64
|
|
|
|
platform:
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: test
|
|
image: rust:1.66.1
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all
|
|
|
|
---
|
|
kind: pipeline
|
|
name: test-on-arm64
|
|
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: test
|
|
image: rust:1.66.1
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all |