|
|
|
@ -54,23 +54,23 @@ jobs:
|
|
|
|
fetch-depth: 0
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
|
|
|
|
- name: Download x64 Dependencies
|
|
|
|
- name: Download x64 Dependencies
|
|
|
|
shell: cmd
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
set /p DEPS_VERSION=<dep\PREBUILT-VERSION
|
|
|
|
DEPS_VERSION=$(cat dep/PREBUILT-VERSION)
|
|
|
|
curl --retry 5 --retry-all-errors -LO "https://github.com/duckstation/dependencies/releases/download/%DEPS_VERSION%/deps-windows-x64.7z"
|
|
|
|
curl --fail --retry 5 --retry-all-errors -LO "https://github.com/duckstation/dependencies/releases/download/$DEPS_VERSION/deps-windows-x64.7z"
|
|
|
|
sha256sum --check --ignore-missing dep\PREBUILT-SHA256SUMS
|
|
|
|
sha256sum --check --ignore-missing dep/PREBUILT-SHA256SUMS
|
|
|
|
"C:\Program Files\7-Zip\7z.exe" x -odep\prebuilt deps-windows-x64.7z
|
|
|
|
7z x -odep/prebuilt deps-windows-x64.7z
|
|
|
|
del /Q deps-windows-x64.7z
|
|
|
|
rm deps-windows-x64.7z
|
|
|
|
|
|
|
|
|
|
|
|
- name: Download ARM64 Dependencies
|
|
|
|
- name: Download ARM64 Dependencies
|
|
|
|
shell: cmd
|
|
|
|
shell: bash
|
|
|
|
if: matrix.arch == 'arm64'
|
|
|
|
if: matrix.arch == 'arm64'
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
set /p DEPS_VERSION=<dep\PREBUILT-VERSION
|
|
|
|
DEPS_VERSION=$(cat dep/PREBUILT-VERSION)
|
|
|
|
curl --retry 5 --retry-all-errors -LO "https://github.com/duckstation/dependencies/releases/download/%DEPS_VERSION%/deps-windows-arm64.7z"
|
|
|
|
curl --fail --retry 5 --retry-all-errors -LO "https://github.com/duckstation/dependencies/releases/download/$DEPS_VERSION/deps-windows-arm64.7z"
|
|
|
|
sha256sum --check --ignore-missing dep\PREBUILT-SHA256SUMS
|
|
|
|
sha256sum --check --ignore-missing dep/PREBUILT-SHA256SUMS
|
|
|
|
"C:\Program Files\7-Zip\7z.exe" x -odep\prebuilt deps-windows-arm64.7z
|
|
|
|
7z x -odep/prebuilt deps-windows-arm64.7z
|
|
|
|
del /Q deps-windows-arm64.7z
|
|
|
|
rm deps-windows-arm64.7z
|
|
|
|
|
|
|
|
|
|
|
|
- name: Download Patch Archives
|
|
|
|
- name: Download Patch Archives
|
|
|
|
shell: cmd
|
|
|
|
shell: cmd
|
|
|
|
|