36 lines
498 B
YAML
36 lines
498 B
YAML
kind: pipeline
|
|
name: test-on-amd64
|
|
|
|
environment:
|
|
RUST_IMAGE:
|
|
from_secret: RUST_IMAGE
|
|
|
|
platform:
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: test
|
|
image: ${RUST_IMAGE}
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all
|
|
|
|
---
|
|
kind: pipeline
|
|
name: test-on-arm64
|
|
|
|
platform:
|
|
arch: arm64
|
|
|
|
environment:
|
|
RUST_IMAGE:
|
|
from_secret: RUST_IMAGE
|
|
|
|
steps:
|
|
- name: test
|
|
image: ${RUST_IMAGE}
|
|
commands:
|
|
- rustc --version
|
|
- cargo --version
|
|
- cargo test --verbose --all |