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
65466dd0c6
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
|
@ -3,7 +3,7 @@
|
||||
[![Downloads](https://img.shields.io/crates/d/output_vt100.svg?style=flat)](https://crates.io/crates/output_vt100)
|
||||
[![MIT Licensed](https://img.shields.io/crates/l/output_vt100.svg?style=flat)](https://crates.io/crates/output_vt100)
|
||||
[![AppVeyor CI](https://img.shields.io/appveyor/ci/Phundrak/output-vt100-rs.svg?style=flat)](https://ci.appveyor.com/project/Phundrak/output-vt100-rs)
|
||||
[![pipeline status](http://labs.phundrak.fr/phundrak/output-vt100-rs/badges/master/pipeline.svg)](http://labs.phundrak.fr/phundrak/output-vt100-rs/commits/master)
|
||||
[![Build Status](https://drone.phundrak.com/api/badges/phundrak/output-vt100-rs/status.svg)](https://drone.phundrak.com/phundrak/output-vt100-rs)
|
||||
|
||||
# Output-VT100
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user