Replace Gitlab CI with Drone
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Lucien Cartier-Tilet 2022-02-12 23:21:12 +01:00
parent 060a3b7408
commit 94b6cb212b
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
2 changed files with 22 additions and 14 deletions

22
.drone.yml Normal file
View 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

View File

@ -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