From ea45dd03d87dfd9fba62c6ab616990166d0b34cb Mon Sep 17 00:00:00 2001 From: Christofer Dutz Date: Thu, 13 Jun 2024 08:49:37 +0200 Subject: [PATCH] feat: Enabled the cpp build on windows in github actions --- .github/workflows/unit-test.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 1d3e9ff87..f8d79fede 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -91,8 +91,4 @@ jobs: - name: Build and test with Maven (All others) shell: bash run: | - if [[ "${{ matrix.os }}" == "windows-latest" ]]; then - ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} -P with-java clean verify - else - ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} -P with-java,with-cpp clean verify - fi \ No newline at end of file + ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} -P with-java,with-cpp clean verify