fix Disjoint Pool bucket_free_chunk #8156
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Run checks required for a PR to merge and verify if post-merge commit is valid. | |
| # This workflow only call other workflows. | |
| name: PR/push | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| QEMU: | |
| uses: ./.github/workflows/reusable_qemu.yml | |
| with: | |
| short_run: false | |
| # Beside the 2 LTS Ubuntu, we also test this on the latest Ubuntu - to be updated | |
| # every 6 months, so we verify the latest version of packages (compilers, etc.). | |
| os: "['ubuntu-22.04', 'ubuntu-24.04', 'ubuntu-25.04']" |