Rust Init #6
28
.drone.yml
Normal file
28
.drone.yml
Normal 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
|
Reference in New Issue
Block a user