diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index de8e6b4..1011ffe 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -9,12 +9,12 @@ on: jobs: ubuntu: - name: Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 22.04 && ' with sanitizers' || '' }}) + name: Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 24.04 && ' with sanitizers' || '' }}) strategy: fail-fast: false matrix: compiler: [clang++, g++] - version: [20.04, 22.04] + version: [20.04, 22.04, 24.04] runs-on: ubuntu-${{ matrix.version }} env: @@ -39,7 +39,9 @@ jobs: - name: Build and check run: | - if [[ "${{ matrix.version }}" == 22.04 ]]; then + if [[ "${{ matrix.version }}" == 24.04 ]]; then + # -Werror causes false positives with sanitizers and modern GCC + [[ "${{ matrix.compiler }}" == g++ ]] && export CXXFLAGS= make distcheck-sanitizers else make distcheck diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3104f96..5d04096 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -35,7 +35,8 @@ if(SANITIZERS) endif() # find Boost -find_package(Boost REQUIRED +set(Boost_VERBOSE TRUE) +find_package(Boost CONFIG REQUIRED COMPONENTS filesystem program_options regex @@ -126,7 +127,7 @@ macro(build_pycsdiff version) # find boost_python${version} set(PYTHON_VERSION_SUFFIX "${version}${Python${version}_VERSION_MINOR}") - find_package(Boost REQUIRED COMPONENTS python${PYTHON_VERSION_SUFFIX}) + find_package(Boost CONFIG REQUIRED COMPONENTS python${PYTHON_VERSION_SUFFIX}) message(STATUS "Python ${version} binding enabled. " "The pycsdiff module will be built!")