Enable drone integration
continuous-integration/drone Build was killed Details

Signed-off-by: Jacob Kiers <jacob@jacobkiers.net>
This commit is contained in:
Jacob Kiers 2022-08-04 23:45:00 +02:00
parent 01d0b82ee8
commit 1e11b81eb0
1 changed files with 26 additions and 0 deletions

26
.drone.yaml Normal file
View File

@ -0,0 +1,26 @@
kind: pipeline
name: test-on-amd64
platform:
arch: amd64
steps:
- name: test
image: rust:1.62
commands:
- cargo build --verbose --all
- cargo test --verbose --all
---
kind: pipeline
name: test-on-arm64
platform:
arch: arm64
steps:
- name: test
image: rust:1.62
commands:
- cargo build --verbose --all
- cargo test --verbose --all