rust-bitcoin-unsafe-fast/.github/workflows
Erick Cestari 2c236ae24f
fuzz: Add p2p address round-trip fuzzing test
2025-05-21 16:49:27 -03:00
..
README.md
cargo-semver-checks-version
coveralls.yml
cron-daily-fuzz.yml fuzz: Add p2p address round-trip fuzzing test 2025-05-21 16:49:27 -03:00
cron-daily-kani.yml
cron-weekly-cargo-mutants.yml
cron-weekly-rustfmt.yml
cron-weekly-update-cargo-semver-checks.yml
cron-weekly-update-nightly.yml
cron-weekly-update-stable.yml
gh-release.yml
manage-pr.yml
miri.yml
release.yml
rust.yml
semver-checks-pr-label.yml
semver-checks.yml
shellcheck.yml
stable-version

README.md

rust-bitcoin workflow notes

We are attempting to run max 20 parallel jobs using GitHub actions (usage limit for free tier).

ref: https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration

The minimal/recent lock files are handled by CI (rust.yml).

Jobs

Run from rust.yml unless stated otherwise. Unfortunately we are now exceeding the 20 job target. (Prepare is quick and must be run first anyway.)

  1. Prepare
  2. Stable - minimal
  3. Stable - recent
  4. Nightly - minimal
  5. Nightly - recent
  6. MSRV - minimal
  7. MSRV - recent
  8. Lint
  9. Docs
  10. Docsrs
  11. Bench
  12. Arch32bit
  13. Cross
  14. Embedded
  15. ASAN
  16. WASM
  17. Kani
  18. Coveralls - run by coveralls.yml
  19. release - run by release.yml
  20. labeler - run by manage-pr.yml
  21. Shellcheck - run by shellcheck.yml