From 15abda8b3e7e06ab34333ba3085bf331571e8fb2 Mon Sep 17 00:00:00 2001 From: Mathis Logemann Date: Fri, 19 Apr 2024 18:20:33 +0200 Subject: [PATCH] [workflow] Remove unused matrix options --- .github/workflows/build_and_test.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 0a4953c39..d32bb0513 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -29,15 +29,11 @@ jobs: Build & Test (${{ matrix.os }}) (C++ ${{ matrix.cxx-standard }}) - ${{ matrix.memory-mapped == 'OFF' && '(USE_MEMORY_MAPPED_FILE=OFF)' || '' }} - ${{ matrix.static-build == 'OFF' && '(BUILD_SHARED_LIBS=OFF)' || '' }} needs: checkSource strategy: fail-fast: false matrix: os: [macos-latest, windows-latest, ubuntu-latest] - memory-mapped: ["ON"] - static-build: ["OFF"] cxx-standard: [17] include: - os: ubuntu-latest