From cbb700ba8940365bfe4bf2cc8e415e99df33141f Mon Sep 17 00:00:00 2001 From: Stephane Janel Date: Sat, 2 Mar 2024 12:12:28 +0100 Subject: [PATCH] [GitHub action] - Faster Windows build --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 38645c98..8e2748c9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -19,7 +19,7 @@ jobs: - name: Install dependencies run: | - vcpkg install openssl curl + vcpkg install curl - name: End vcpkg install run: | @@ -31,7 +31,7 @@ jobs: - name: Build working-directory: ${{github.workspace}}/build - run: cmake --build . --config ${{matrix.buildmode}} --parallel 2 + run: cmake --build . --config ${{matrix.buildmode}} --parallel 4 - name: Local Tests working-directory: ${{github.workspace}}/build