Rust Init #6

Merged
lukas merged 15 commits from rust-init into main 2023-11-20 16:40:55 +01:00
Showing only changes of commit 2e47e24d43 - Show all commits

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