mirror of
https://github.com/moby/moby.git
synced 2026-08-10 01:49:04 +00:00
Allows PR authors to stress-test specific integration tests for flakiness even when the diff doesn't touch them. Add a /flaky-check directive on its own line in the PR body: /flaky-check=TestFoo,TestBar The GHA integration-flaky job parses the directive from the PR body and exports the names as FLAKY_EXTRA_TESTS, which the script appends to the diff-detected set before running the stress loop. Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This directory holds scripts called by make.sh in the parent directory.
Each script is named after the bundle it creates. They should not be called directly - instead, pass it as argument to make.sh, for example:
./hack/make.sh binary ubuntu
# Or to run all default bundles:
./hack/make.sh
To add a bundle:
- Create a shell-compatible file here
- Add it to $DEFAULT_BUNDLES in make.sh