Replace Gitlab CI with Drone
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
060a3b7408
commit
94b6cb212b
22
.drone.yml
Normal file
22
.drone.yml
Normal file
@ -0,0 +1,22 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: rust-stable
|
||||
|
||||
steps:
|
||||
- name: stable
|
||||
image: rust:latest
|
||||
commands:
|
||||
- cargo build --verbose
|
||||
- cargo test
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: rust-nightly
|
||||
|
||||
steps:
|
||||
- name: nightly
|
||||
image: rustlang/rust:nightly
|
||||
commands:
|
||||
- cargo build --verbose
|
||||
- cargo test
|
@ -1,14 +0,0 @@
|
||||
stages:
|
||||
- build
|
||||
|
||||
rust-latest:
|
||||
stage: build
|
||||
image: rust:latest
|
||||
script:
|
||||
- cargo build --verbose
|
||||
|
||||
rust-nightly:
|
||||
stage: build
|
||||
image: rustlang/rust:nightly
|
||||
script:
|
||||
- cargo build --verbose
|
Loading…
Reference in New Issue
Block a user