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

28 lines
401 B
YAML
Raw Permalink Normal View History

kind: pipeline
name: test-on-amd64
platform:
arch: amd64
steps:
- name: test
image: rust:alpine
commands:
- rustc --version
- cargo --version
- cargo test --verbose --all
---
kind: pipeline
name: test-on-arm64
platform:
arch: arm64
steps:
- name: test
image: rust:alpine
commands:
- rustc --version
- cargo --version
- cargo test --verbose --all