Combo of duplication action name check and LocalizeAllActions fix #3736
Workflow file for this run
This file contains 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: "test-p4c-ubuntu-20.04-sanitizers" | |
on: | |
schedule: | |
# Every day on midnight UTC | |
- cron: "0 0 * * *" | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
# Build with clang and test p4c on Ubuntu 20.04. | |
test-ubuntu20-clang-sanitizers: | |
# Only run on pull requests with the "run-sanitizer" label. | |
if: ${{ github.event_name == 'schedule' || contains(github.event.pull_request.labels.*.name, 'run-sanitizer') }} | |
runs-on: ubuntu-20.04 | |
env: | |
CTEST_PARALLEL_LEVEL: 2 | |
IMAGE_TYPE: test | |
COMPILE_WITH_CLANG: ON | |
BUILD_AUTO_VAR_INIT_PATTERN: ON | |
ENABLE_SANITIZERS: ON | |
UBSAN_OPTIONS: print_stacktrace=1 | |
ASAN_OPTIONS: print_stacktrace=1:detect_leaks=0 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: ccache | |
uses: hendrikmuhs/ccache-action@v1 | |
with: | |
key: test-${{ runner.os }}-clang | |
max-size: 1000M | |
- name: Build (Ubuntu 20.04, Clang, Sanitizers) | |
run: | | |
tools/ci-build.sh | |
- name: Run tests (Ubuntu 20.04) | |
# Need to use sudo for the eBPF kernel tests. | |
run: sudo -E ctest --output-on-failure --schedule-random | |
working-directory: ./build |