update CI config with more tests
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
b0e97574ec
commit
f38ea4d9c1
1 changed files with 18 additions and 1 deletions
19
.drone.yml
19
.drone.yml
|
@ -1,12 +1,29 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: tests
|
name: tests
|
||||||
steps:
|
steps:
|
||||||
- name: test-linux
|
- name: test-linux-debug
|
||||||
image: rust
|
image: rust
|
||||||
commands:
|
commands:
|
||||||
- apt update
|
- apt update
|
||||||
- apt install -y libgtk-3-dev
|
- apt install -y libgtk-3-dev
|
||||||
- cargo test -v
|
- cargo test -v
|
||||||
|
|
||||||
|
- name: test-win-debug
|
||||||
|
image: rust
|
||||||
|
commands:
|
||||||
|
- cargo test -v --target x86_64-pc-windows-gnu
|
||||||
|
|
||||||
|
- name: test-linux-release
|
||||||
|
image: rust
|
||||||
|
commands:
|
||||||
|
- apt update
|
||||||
|
- apt install -y libgtk-3-dev
|
||||||
|
- cargo test -v --release
|
||||||
|
|
||||||
|
- name: test-win-release
|
||||||
|
image: rust
|
||||||
|
commands:
|
||||||
|
- cargo test -v --target x86_64-pc-windows-gnu --release
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: release
|
name: release
|
||||||
|
|
Loading…
Reference in a new issue