2020-07-19 15:03:54 +00:00
|
|
|
# Copyright (C) 2020 Robin Krahl <robin.krahl@ireas.org>
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
image: archlinux
|
|
|
|
packages:
|
|
|
|
- gnupg
|
|
|
|
- reuse
|
|
|
|
- rustup
|
|
|
|
sources:
|
|
|
|
- https://git.sr.ht/~ireas/rusty-man
|
|
|
|
tasks:
|
|
|
|
- setup: |
|
|
|
|
rustup set profile minimal
|
|
|
|
rustup default stable
|
|
|
|
rustup component add rustfmt
|
|
|
|
rustup component add clippy
|
|
|
|
- version: |
|
|
|
|
rustc -V
|
|
|
|
- verify: |
|
|
|
|
cd rusty-man
|
|
|
|
curl -s "https://pgp.ireas.org/0x6D533958F070C57C.txt" | gpg --import
|
|
|
|
git verify-commit HEAD
|
|
|
|
- reuse: |
|
|
|
|
cd rusty-man
|
|
|
|
reuse lint
|
|
|
|
- build: |
|
|
|
|
cd rusty-man
|
|
|
|
cargo build --release
|
|
|
|
- test: |
|
|
|
|
cd rusty-man
|
2020-09-11 16:14:19 +00:00
|
|
|
RUSTY_MAN_GENERATE=1 cargo test
|
2020-07-19 15:03:54 +00:00
|
|
|
- clippy: |
|
|
|
|
cd rusty-man
|
|
|
|
cargo clippy -- -D warnings
|
|
|
|
- format: |
|
|
|
|
cd rusty-man
|
|
|
|
cargo fmt -- --check
|
2020-07-19 15:29:17 +00:00
|
|
|
triggers:
|
|
|
|
- action: email
|
|
|
|
condition: failure
|
|
|
|
to: robin.krahl@ireas.org
|