Duplicate address support on input/object filters #1428
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 | |
on: | |
push: | |
branches: [ master ] | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- "**" | |
schedule: | |
- cron: 30 0 * * * | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
sanitizers: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
suffix: | |
- none | |
- sse2 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Create directories | |
run: mkdir Debug | |
- name: CMake | |
env: | |
CC: gcc-12 | |
CXX: g++-12 | |
run: | | |
cmake .. -DCMAKE_BUILD_TYPE=Debug \ | |
-DCMAKE_CXX_FLAGS="-fsanitize=address,leak,undefined -DASAN_BUILD" \ | |
-DCMAKE_C_FLAGS="-fsanitize=address,leak,undefined -DASAN_BUILD" \ | |
-DCMAKE_EXE_LINKER_FLAGS="-fsanitize=address,leak,undefined" \ | |
-DCMAKE_MODULE_LINKER_FLAGS="-fsanitize=address,leak,undefined" \ | |
-DLIBDDWAF_VECTORIZED_TRANSFORMERS=$([ "${{ matrix.suffix }}" != "none" ] && echo "ON" || echo "OFF") | |
working-directory: Debug | |
- name: Build | |
run: VERBOSE=1 make -j $(nproc) testPowerWAF waf_validator | |
working-directory: Debug | |
- name: Test | |
run: ASAN_OPTIONS="verbosity=1 fast_unwind_on_malloc=0 detect_leaks=1" make test | |
working-directory: Debug | |
- name: Validate | |
run: ASAN_OPTIONS="verbosity=1 fast_unwind_on_malloc=0 detect_leaks=1" make validate | |
working-directory: Debug | |
valgrind: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
suffix: | |
- none | |
- sse2 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: sudo apt update ; sudo apt install -y valgrind | |
- name: Create directories | |
run: mkdir Debug | |
- name: CMake | |
env: | |
CC: gcc-12 | |
CXX: g++-12 | |
run: | | |
cmake .. \ | |
-DCMAKE_BUILD_TYPE=Debug \ | |
-DLIBDDWAF_VECTORIZED_TRANSFORMERS=$([ "${{ matrix.suffix }}" != "none" ] && echo "ON" || echo "OFF") | |
working-directory: Debug | |
- name: Build | |
run: VERBOSE=1 make -j $(nproc) testPowerWAF waf_validator | |
working-directory: Debug | |
- name: Test | |
run: make test_valgrind | |
working-directory: Debug | |
- name: Validate | |
run: make validate_valgrind | |
working-directory: Debug | |
coverage: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
suffix: | |
- none | |
- sse2 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: sudo apt update ; sudo apt install -y gcovr gcc-12 | |
- name: Create directories | |
run: mkdir Debug | |
- name: CMake | |
env: | |
CC: gcc-12 | |
CXX: g++-12 | |
run: | | |
cmake .. \ | |
-DLIBDDWAF_TEST_COVERAGE=ON \ | |
-DCMAKE_BUILD_TYPE=Debug \ | |
-DLIBDDWAF_VECTORIZED_TRANSFORMERS=$([ "${{ matrix.suffix }}" != "none" ] && echo "ON" || echo "OFF") | |
working-directory: Debug | |
- name: Build | |
run: VERBOSE=1 make -j $(nproc) testPowerWAF waf_validator | |
working-directory: Debug | |
- name: Test | |
run: make test | |
working-directory: Debug | |
- name: Validate | |
run: make validate | |
working-directory: Debug | |
- name: Generate coverage | |
run: | | |
gcovr --gcov-executable gcov-12 --exclude-throw-branches -v -f '.*src.*' -x -o coverage.xml | |
mkdir -p coverage | |
gcovr --gcov-executable gcov-12 --html-details coverage/coverage.html --exclude-throw-branches -f ".*src.*" -d | |
working-directory: Debug | |
- name: Submit coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: waf_test_${{ matrix.suffix }} | |
verbose: true | |
files: coverage.xml | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage_${{ matrix.suffix }} | |
path: ${{ github.workspace }}/Debug/coverage/ | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Create directories | |
run: mkdir Debug | |
- name: Install clang-{tidy,format} | |
run: | | |
DEBIAN_FRONTEND="noninteractive" sudo apt-get -y remove python3-lldb-14 | |
sudo .github/workflows/scripts/llvm.sh 15 | |
sudo apt-get install -y clang-tidy-15 clang-format-15 | |
- name: CMake | |
env: | |
CXX: clang++-15 | |
CC: clang-15 | |
run: | | |
cmake .. -DCMAKE_BUILD_TYPE=Debug -DCLANG_TIDY=/usr/bin/run-clang-tidy-15 \ | |
-DCLANG_FORMAT=/usr/bin/clang-format-15 | |
working-directory: Debug | |
- name: Build | |
run: VERBOSE=1 make -j $(nproc) | |
working-directory: Debug | |
- name: Format | |
run: make format | |
working-directory: Debug | |
- name: Tidy | |
run: make tidy || true | |
working-directory: Debug |