mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
cache dxsdk folder on C
This commit is contained in:
parent
da227101a0
commit
1efb87500a
1 changed files with 11 additions and 2 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -18,12 +18,21 @@ jobs:
|
||||||
repository: 'itsmattkc/msvc420'
|
repository: 'itsmattkc/msvc420'
|
||||||
path: msvc420
|
path: msvc420
|
||||||
|
|
||||||
- name: Set up DX5 SDK
|
- name: Cache DX5 SDK
|
||||||
|
id: cache-dx5
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: C:\dxsdk
|
||||||
|
key: dx5sdk
|
||||||
|
|
||||||
|
- name: Setup DX5 SDK
|
||||||
|
if: steps.cache-dx5.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
cd dx5sdk
|
cd dx5sdk
|
||||||
C:\msys64\usr\bin\wget.exe https://archive.org/download/idx5sdk/idx5sdk.exe
|
C:\msys64\usr\bin\wget.exe https://archive.org/download/idx5sdk/idx5sdk.exe
|
||||||
7z x .\idx5sdk.exe
|
7z x .\idx5sdk.exe
|
||||||
7z x .\DX5SDK.EXE
|
7z x .\DX5SDK.EXE
|
||||||
|
cd dx5sdk
|
||||||
cd cdrom
|
cd cdrom
|
||||||
.\SETUP.EXE /s
|
.\SETUP.EXE /s
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue