From 355c43fe6684a55a8a4734f56e92f7afea8d56cc Mon Sep 17 00:00:00 2001 From: Margen67 Date: Thu, 15 Feb 2024 17:30:44 -0800 Subject: [PATCH] [CI] Completely remove VS2019 --- .github/workflows/CI.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0eda0a68f..05dd34a9f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -45,16 +45,10 @@ on: jobs: build-windows: - name: Build (Windows, ${{ matrix.config.vsver }}) # runner.os can't be used here - runs-on: ${{ matrix.config.runs-on }} + name: Build (Windows) # runner.os can't be used here + runs-on: windows-2022 env: POWERSHELL_TELEMETRY_OPTOUT: 1 - strategy: - fail-fast: false - matrix: - config: - - {vsver: VS2022, runs-on: windows-2022} - - {vsver: VS2019, runs-on: windows-2019} steps: - uses: actions/checkout@v4 with: @@ -72,18 +66,17 @@ jobs: - name: Upload xenia-vfs-dump artifacts uses: actions/upload-artifact@v4 with: - name: xenia-vfs-dump_canary_${{ matrix.config.vsver }} + name: xenia-vfs-dump_canary path: artifacts\xenia-vfs-dump if-no-files-found: error - - name: Upload xenia artifacts + - name: Upload xenia canary artifacts uses: actions/upload-artifact@v4 with: - name: xenia_canary_${{ matrix.config.vsver }} + name: xenia_canary path: artifacts\xenia_canary if-no-files-found: error - name: Create release if: | - matrix.config.runs-on == 'windows-2022' && github.repository == 'xenia-canary/xenia-canary' && github.event.action != 'pull_request' && contains(github.ref, 'refs/heads/canary') &&