Add abseil string helpers #7090
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-tools" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
merge_group: | |
branches: [main] | |
# Cancel any preceding run on the pull request. | |
concurrency: | |
group: tools-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
# Build and test p4tools on Ubuntu 22.04. | |
build-and-test-tools: | |
runs-on: ubuntu-22.04 | |
env: | |
CTEST_PARALLEL_LEVEL: 4 | |
IMAGE_TYPE: test | |
CMAKE_UNITY_BUILD: ON | |
ENABLE_TEST_TOOLS: ON | |
BUILD_GENERATOR: Ninja | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: ccache | |
uses: hendrikmuhs/ccache-action@v1 | |
with: | |
key: test-tools-${{ runner.os }} | |
max-size: 1000M | |
- name: Build (Ubuntu 22.04) | |
run: | | |
tools/ci-build.sh | |
- name: Run tests (Ubuntu 22.04) | |
# Need to use sudo for the eBPF kernel tests. | |
run: sudo -E ctest -R "testgen|smith" --output-on-failure --schedule-random | |
working-directory: ./build |