Compare commits

...

1 Commits

Author SHA1 Message Date
Lucien Cartier-Tilet 94b6cb212b
Replace Gitlab CI with Drone
continuous-integration/drone/push Build is passing Details
2022-02-12 23:23:25 +01:00
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