From 7dd1259b58733b2d7139957bda57d217dc786e5f Mon Sep 17 00:00:00 2001 From: Tristan Brindle Date: Tue, 2 Sep 2025 12:30:32 +0100 Subject: [PATCH] Periodic test of MSVC modules support Since I've been mouthing off on Reddit about it not working --- .github/workflows/windows.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2499b392..9f5ba787 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -13,6 +13,7 @@ jobs: matrix: platform: [x86, x64] build_type: [Debug, Release] + test_with: [Headers, Module] steps: - uses: actions/checkout@master @@ -32,6 +33,8 @@ jobs: cmake -G Ninja \ -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \ -DFLUX_BUILD_BENCHMARKS=${{matrix.build_type == 'Release'}} \ + -DFLUX_BUILD_MODULE=${{matrix.test_with == 'Module'}} \ + -DFLUX_BUILD_TESTS_USING_MODULE=${{matrix.test_with == 'Module'}} \ $GITHUB_WORKSPACE - name: Build