This commit is contained in:
parent
8078fffc5d
commit
831e971914
1 changed files with 16 additions and 0 deletions
16
.drone.yml
16
.drone.yml
|
@ -16,6 +16,22 @@ steps:
|
|||
- apt update
|
||||
- apt install -y libgtk-3-dev
|
||||
- cargo test -v --release
|
||||
|
||||
- name: test-windows-debug
|
||||
image: lordmzte/rust-win
|
||||
depends_on: [ clone ]
|
||||
commands:
|
||||
- apt update
|
||||
- apt install -y wine
|
||||
- cargo test -v --target x86_64-pc-windows-gnu
|
||||
|
||||
- name: test-windows-release
|
||||
image: lordmzte/rust-win
|
||||
depends_on: [ clone ]
|
||||
commands:
|
||||
- apt update
|
||||
- apt install -y wine
|
||||
- cargo test -v --release --target x86_64-pc-windows-gnu
|
||||
---
|
||||
kind: pipeline
|
||||
name: release
|
||||
|
|
Loading…
Reference in a new issue