Skip to content

Skip setting event target PC if the event was a filtered mode change #45

Skip setting event target PC if the event was a filtered mode change

Skip setting event target PC if the event was a filtered mode change #45

Workflow file for this run

on:
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
compilers:
- c: gcc
cxx: g++
- c: clang
cxx: clang++
build_config:
- build_type: Release
lto: 0
- build_type: Release
lto: 1
- build_type: Debug
lto: 0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get -y install libboost-dev cython3 clang lld llvm
- name: Create Build Directory
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMAKE
working-directory: ${{runner.workspace}}/build
run: CC=${{ matrix.compilers.c }} CXX=${{ matrix.compilers.cxx }} cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{ matrix.build_config.build_type }} -DBUILD_STF_PYTHON_LIB=ON -DFULL_LTO=${{ matrix.build_config.lto }}
- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config ${{ matrix.build_config.build_type }} -j 4
- name: Regress
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config ${{ matrix.build_config.build_type }} -j 4 --target regress