mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
[CI] Completely remove VS2019
This commit is contained in:
parent
1f176676b5
commit
355c43fe66
17
.github/workflows/CI.yml
vendored
17
.github/workflows/CI.yml
vendored
|
|
@ -45,16 +45,10 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-windows:
|
build-windows:
|
||||||
name: Build (Windows, ${{ matrix.config.vsver }}) # runner.os can't be used here
|
name: Build (Windows) # runner.os can't be used here
|
||||||
runs-on: ${{ matrix.config.runs-on }}
|
runs-on: windows-2022
|
||||||
env:
|
env:
|
||||||
POWERSHELL_TELEMETRY_OPTOUT: 1
|
POWERSHELL_TELEMETRY_OPTOUT: 1
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
config:
|
|
||||||
- {vsver: VS2022, runs-on: windows-2022}
|
|
||||||
- {vsver: VS2019, runs-on: windows-2019}
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
@ -72,18 +66,17 @@ jobs:
|
||||||
- name: Upload xenia-vfs-dump artifacts
|
- name: Upload xenia-vfs-dump artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: xenia-vfs-dump_canary_${{ matrix.config.vsver }}
|
name: xenia-vfs-dump_canary
|
||||||
path: artifacts\xenia-vfs-dump
|
path: artifacts\xenia-vfs-dump
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- name: Upload xenia artifacts
|
- name: Upload xenia canary artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: xenia_canary_${{ matrix.config.vsver }}
|
name: xenia_canary
|
||||||
path: artifacts\xenia_canary
|
path: artifacts\xenia_canary
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
- name: Create release
|
- name: Create release
|
||||||
if: |
|
if: |
|
||||||
matrix.config.runs-on == 'windows-2022' &&
|
|
||||||
github.repository == 'xenia-canary/xenia-canary' &&
|
github.repository == 'xenia-canary/xenia-canary' &&
|
||||||
github.event.action != 'pull_request' &&
|
github.event.action != 'pull_request' &&
|
||||||
contains(github.ref, 'refs/heads/canary') &&
|
contains(github.ref, 'refs/heads/canary') &&
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue