Skip to content

Fix EliminateTuples bug with nested struct/tuples #5637

Fix EliminateTuples bug with nested struct/tuples

Fix EliminateTuples bug with nested struct/tuples #5637

name: "validate-p4c"
on:
schedule:
# Every day on midnight UTC
- cron: "0 0 * * *"
pull_request:
branches: [main]
push:
branches: [main]
# Cancel any preceding run on the pull request.
concurrency:
group: validate-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
# We run validation in parallel with the normal tests.
# Validation ensures that P4C compiles P4-16 programs correctly.
# We only test the front end and some mid end passes for now.
validate:
# Only run on pull requests with the "run-validation" label.
if: ${{ github.event_name == 'schedule' || contains(github.event.pull_request.labels.*.name, 'run-validation') }}
env:
CTEST_PARALLEL_LEVEL: 4
IMAGE_TYPE: test
VALIDATION: ON
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: validation-${{ runner.os }}
max-size: 1000M
- name: Build (Ubuntu 22.04)
run: |
tools/ci-build.sh
- name: Validate
run: |
uv run ctest -R toz3-validate-p4c --output-on-failure --schedule-random
working-directory: ./build