1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-05-09 11:57:46 +00:00
physis/.build.yml

38 lines
782 B
YAML
Raw Normal View History

2022-07-19 20:08:14 -04:00
image: archlinux
packages:
- rust
- cargo-deny
2022-08-06 18:19:01 -04:00
- unshield
- rsync
- reuse
2023-12-12 22:22:21 -05:00
- cmake
2022-07-19 20:08:14 -04:00
sources:
- https://git.sr.ht/~redstrate/physis
secrets:
- b748582a-5d31-4fe8-94d6-4a63035e97aa
2022-07-19 20:08:14 -04:00
tasks:
2022-12-17 09:44:04 -05:00
- update-docs: |
cd physis
cargo doc --release --no-deps
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
rsync -e 'ssh -p 38901' -Wvr target/doc/ deploy@ryne.moe:/srv/http/physis-docs
- reuse: |
cd physis
reuse lint
2022-07-19 20:08:14 -04:00
- check: |
cd physis
cargo check
2022-10-26 17:16:08 -04:00
- clippy: |
cd physis
cargo clippy
2022-07-27 20:58:21 -04:00
- test: |
cd physis
cargo test
- deny-check: |
cd physis
2022-10-26 17:16:08 -04:00
cargo deny check
- semver-checks: |-
cd physis
2022-12-17 08:41:30 -05:00
cargo install --locked cargo-semver-checks
2022-12-17 09:44:04 -05:00
cargo semver-checks check-release