From ed6dd6f6cdb7a41c35ea18e88625a45badb6f9e5 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 26 May 2023 20:33:51 +1000 Subject: [PATCH] CI: Update build to use patches.zip instead of cheats --- .github/workflows/linux_build_qt.yml | 6 +++--- .github/workflows/macos_build.yml | 6 +++--- .github/workflows/windows_build_qt.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/linux_build_qt.yml b/.github/workflows/linux_build_qt.yml index a8c771cb20..0887b67587 100644 --- a/.github/workflows/linux_build_qt.yml +++ b/.github/workflows/linux_build_qt.yml @@ -28,7 +28,7 @@ on: required: false type: string default: "" - cheats_url: + patches_url: required: false type: string default: https://github.com/PCSX2/pcsx2_patches/releases/latest/download @@ -93,10 +93,10 @@ jobs: if: steps.cache-deps.outputs.cache-hit != 'true' run: .github/workflows/scripts/linux/build-dependencies-qt.sh - - name: Download cheats + - name: Download patches run: | cd bin/resources - aria2c -Z "${{ inputs.cheats_url }}/cheats_ni.zip" "${{ inputs.cheats_url }}/cheats_ws.zip" + aria2c -Z "${{ inputs.patches_url }}/patches.zip" - name: Generate CMake env: diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index 33d9cb93dc..d268c74df2 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -17,7 +17,7 @@ on: gui: required: true type: string - cheats_url: + patches_url: required: false type: string default: https://github.com/PCSX2/pcsx2_patches/releases/latest/download @@ -82,10 +82,10 @@ jobs: GUI: ${{ inputs.gui }} run: .github/workflows/scripts/macos/build-dependencies.sh - - name: Download cheats + - name: Download patches run: | cd bin/resources - aria2c -Z "${{ inputs.cheats_url }}/cheats_ni.zip" "${{ inputs.cheats_url }}/cheats_ws.zip" + aria2c -Z "${{ inputs.patches_url }}/patches.zip" # -- SETUP CCACHE - https://cristianadam.eu/20200113/speeding-up-c-plus-plus-github-actions-using-ccache/ - name: Prepare ccache timestamp diff --git a/.github/workflows/windows_build_qt.yml b/.github/workflows/windows_build_qt.yml index 2cb0fad936..d9fee78130 100644 --- a/.github/workflows/windows_build_qt.yml +++ b/.github/workflows/windows_build_qt.yml @@ -37,7 +37,7 @@ on: required: false type: string default: 3rdparty\qt\6.5.0\msvc2022_64 - cheats_url: + patches_url: required: false type: string default: https://github.com/PCSX2/pcsx2_patches/releases/latest/download @@ -84,11 +84,11 @@ jobs: 7z x qt-*-x64.7z del qt-*-x64.7z - - name: Download cheats + - name: Download patches shell: cmd run: | cd bin/resources - aria2c -Z "${{ inputs.cheats_url }}/cheats_ni.zip" "${{ inputs.cheats_url }}/cheats_ws.zip" + aria2c -Z "${{ inputs.patches_url }}/patches.zip" - name: Generate CMake if: inputs.configuration == 'CMake'