INFRA-25160: fix Snapshot descriptor pool lifecycle decision at RINIT #4
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
| name: Integration test | |
| on: | |
| push: | |
| branches: ['*-bc'] | |
| paths: | |
| - 'tests/integration/**' | |
| - 'tests/uaf/**' | |
| - 'src/php/ext/google/protobuf/**' | |
| - 'src/third_party/utf8_range/**' | |
| - '.github/workflows/integration.yml' | |
| workflow_dispatch: | |
| jobs: | |
| integration: | |
| name: Keyed multi-pool descriptor cache | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run integration test | |
| run: bash tests/integration/run.sh | |
| uaf: | |
| name: Use-after-free guard (MALLOC_PERTURB_) | |
| runs-on: ubuntu-latest | |
| container: php:8.4-cli-bookworm | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install build toolchain | |
| run: | | |
| apt-get update | |
| apt-get install -y --no-install-recommends autoconf gcc make curl | |
| - name: Run use-after-free guard | |
| run: bash tests/uaf/run.sh |