From 1a1cd2d4956d9ebf73d44c51c6173782b440bb50 Mon Sep 17 00:00:00 2001 From: glx22 Date: Sun, 13 Oct 2024 22:23:40 +0200 Subject: [PATCH] Cleanup: [CI] Remove 'os' input for windows workflow --- .github/workflows/ci-build.yml | 7 ++----- .github/workflows/ci-windows.yml | 5 +---- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index bc833cbc7c..d7e42a3d17 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -80,10 +80,8 @@ jobs: fail-fast: false matrix: include: - - os: windows-latest - arch: x86 - - os: windows-latest - arch: x64 + - arch: x86 + - arch: x64 name: Windows (${{ matrix.arch }}) @@ -91,7 +89,6 @@ jobs: secrets: inherit with: - os: ${{ matrix.os }} arch: ${{ matrix.arch }} check_annotations: diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index b748e8db2e..789017bdb9 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -6,9 +6,6 @@ on: arch: required: true type: string - os: - required: true - type: string env: CTEST_OUTPUT_ON_FAILURE: 1 @@ -17,7 +14,7 @@ jobs: windows: name: CI - runs-on: ${{ inputs.os }} + runs-on: windows-latest steps: - name: Checkout