mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 07:37:59 -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
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
@ -18,12 +18,21 @@ jobs:
|
|||
repository: 'itsmattkc/msvc420'
|
||||
path: msvc420
|
||||
|
||||
- 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: |
|
||||
cd dx5sdk
|
||||
C:\msys64\usr\bin\wget.exe https://archive.org/download/idx5sdk/idx5sdk.exe
|
||||
7z x .\idx5sdk.exe
|
||||
7z x .\DX5SDK.EXE
|
||||
cd dx5sdk
|
||||
cd cdrom
|
||||
.\SETUP.EXE /s
|
||||
|
||||
|
|
Loading…
Reference in a new issue