Drone CI init
Some checks reported errors
continuous-integration/drone/pr 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
continuous-integration/drone/push Build was killed

This commit is contained in:
Leon Wilzer 2023-11-16 23:01:01 +01:00
parent 87f9ac32c5
commit 2e47e24d43

28
.drone.yml Normal file
View File

@ -0,0 +1,28 @@
environment:
RUST_IMAGE:
from_secret: RUST_IMAGE
kind: pipeline
name: test-on-amd64
platform:
arch: amd64
steps:
- name: test
image: $RUST_IMAGE
commands:
- cargo test --verbose --all
---
kind: pipeline
name: test-on-arm64
platform:
arch: arm64
steps:
- name: test
image: $RUST_IMAGE
commands:
- cargo test --verbose --all