This repository has been archived on 2024-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
WANessa/.drone.yml
Leon c5b459daee
Some checks reported errors
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build was killed
Cargo Build & Test / Rust project - latest (stable) (push) Has been cancelled
Cargo Build & Test / Rust project - latest (stable) (pull_request) Has been cancelled
moved environment to each arch
2023-11-17 08:23:48 +01:00

30 lines
416 B
YAML

kind: pipeline
name: test-on-amd64
platform:
arch: amd64
steps:
- name: test
image: $RUST_IMAGE
environment:
RUST_IMAGE:
from_secret: RUST_IMAGE
commands:
- cargo test --verbose --all
---
kind: pipeline
name: test-on-arm64
platform:
arch: arm64
steps:
- name: test
image: $RUST_IMAGE
environment:
RUST_IMAGE:
from_secret: RUST_IMAGE
commands:
- cargo test --verbose --all