Files
little_learner/.woodpecker/.build.yml
Smaug123 e03d9ee56e Playing
2023-07-23 16:59:59 +01:00

22 lines
1.3 KiB
YAML

pipeline:
build:
image: nixos/nix
commands:
- echo ${CI_BUILD_EVENT}
- echo ${CI_COMMIT_BRANCH}
- echo ${CI_REPO_DEFAULT_BRANCH}
# Lint
- nix --store /mnt/nix --experimental-features 'nix-command flakes' develop --command cargo -- fmt --all -- --check
- nix --store /mnt/nix --experimental-features 'nix-command flakes' develop --command cargo -- clippy -- -D warnings -W clippy::must_use_candidate
- nix --store /mnt/nix --experimental-features 'nix-command flakes' develop .#ci --command alejandra -- --check .
- nix --store /mnt/nix --experimental-features 'nix-command flakes' develop .#ci --command markdown-link-check README.md
# Test
- nix --store /mnt/nix --experimental-features 'nix-command flakes' develop --command cargo test --verbose --release
- nix --store /mnt/nix --experimental-features 'nix-command flakes' develop --command cargo test --verbose
# Run through Nix
- nix --store /mnt/nix --experimental-features 'nix-command flakes' build
- nix --store /mnt/nix --experimental-features 'nix-command flakes' run
when:
evaluate: '(CI_BUILD_EVENT == "push" && CI_COMMIT_BRANCH == CI_REPO_DEFAULT_BRANCH) || (CI_BUILD_EVENT == "pull_request" && CI_COMMIT_BRANCH != CI_REPO_DEFAULT_BRANCH)'