Combine into one, for efficiency
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/push/all-checks-complete Pipeline was successful
ci/woodpecker/pr/all-checks-complete Pipeline was successful

This commit is contained in:
Smaug123
2023-07-20 18:59:48 +01:00
parent aa6525764f
commit 195127bff7
4 changed files with 9 additions and 20 deletions

View File

@@ -5,8 +5,6 @@ pipeline:
- echo "All required checks complete"
depends_on:
- run
- build
- ci-specific
skip_clone: true

View File

@@ -2,10 +2,14 @@ pipeline:
build:
image: nixos/nix
commands:
- nix --experimental-features 'nix-command flakes' develop --command cargo test --verbose --release
- nix --experimental-features 'nix-command flakes' develop --command cargo test --verbose
lint:
image: nixos/nix
commands:
# Lint
- nix --experimental-features 'nix-command flakes' develop --command cargo -- fmt --all -- --check
- nix --experimental-features 'nix-command flakes' develop --command cargo -- clippy -- -D warnings -W clippy::must_use_candidate
- nix --experimental-features 'nix-command flakes' develop .#ci --command alejandra -- --check .
- nix --experimental-features 'nix-command flakes' develop .#ci --command markdown-link-check README.md
# Test
- nix --experimental-features 'nix-command flakes' develop --command cargo test --verbose --release
- nix --experimental-features 'nix-command flakes' develop --command cargo test --verbose
# Run through Nix
- nix --experimental-features 'nix-command flakes' build
- nix --experimental-features 'nix-command flakes' run

View File

@@ -1,7 +0,0 @@
pipeline:
alejandra:
image: nixos/nix
commands:
- nix --experimental-features 'nix-command flakes' develop .#ci --command alejandra -- --check .
- nix --experimental-features 'nix-command flakes' develop .#ci --command markdown-link-check README.md

View File

@@ -1,6 +0,0 @@
pipeline:
nix:
image: nixos/nix
commands:
- nix --experimental-features 'nix-command flakes' build
- nix --experimental-features 'nix-command flakes' run