blob: e7419811f84a64e37307bc92662a3b1ebfc1dedc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
image: ubuntu/noble
packages:
- rustup
- pkg-config
- libxkbcommon-dev
- libssl-dev
triggers:
- action: email
condition: failure
to: "<~pml68/dev@lists.sr.ht>"
tasks:
- rust-setup: |
rustup toolchain install stable --profile default -c clippy
rustup default stable
- lint: |
cd iced_dialog
cargo lint
- test: |
cd iced_dialog
cargo test --verbose --doc
cargo test --verbose --all-targets
- build-example: |
cd iced_dialog
cargo build --example save
|