From 7f676b28d3dee92b4aeda68f93c18c1fe00401f0 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Wed, 4 Sep 2024 11:34:12 +0200 Subject: [PATCH] Reduce footprint of Windows CI Reviewed-by: Neil Horman Reviewed-by: Tom Cosgrove Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/25378) (cherry picked from commit a4954ea01a5665df2963d0e8e7d86997793c37c6) --- .github/workflows/windows.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8c0382502d6..0c6dbf8ead0 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -17,17 +17,17 @@ jobs: # Run a job for each of the specified target architectures: strategy: matrix: - os: - - windows-2019 - - windows-2022 platform: - arch: win64 + os: windows-2019 config: enable-fips - arch: win64 + os: windows-2022 config: enable-fips no-thread-pool no-quic - arch: win32 + os: windows-2022 config: --strict-warnings no-fips - runs-on: ${{ github.server_url == 'https://github.com' && matrix.os || format('{0}-self-hosted', matrix.os) }} + runs-on: ${{ github.server_url == 'https://github.com' && matrix.platform.os || format('{0}-self-hosted', matrix.platform.os) }} steps: - uses: actions/checkout@v4 - name: checkout fuzz/corpora submodule @@ -77,7 +77,7 @@ jobs: strategy: matrix: os: - - windows-2019 +# Reducing CI footprint - windows-2019 - windows-2022 runs-on: ${{ github.server_url == 'https://github.com' && matrix.os || format('{0}-self-hosted', matrix.os) }} steps: @@ -115,7 +115,7 @@ jobs: matrix: os: - windows-2019 - - windows-2022 +# Reducing CI footprint - windows-2022 runs-on: ${{ github.server_url == 'https://github.com' && matrix.os || format('{0}-self-hosted', matrix.os) }} steps: - uses: actions/checkout@v4 -- 2.47.2