mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
actions can't handle it, only cache the download
This commit is contained in:
parent
dedc88d7ca
commit
6b6f32e8d5
1 changed files with 10 additions and 5 deletions
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
|
@ -22,10 +22,10 @@ jobs:
|
||||||
id: cache-dx5
|
id: cache-dx5
|
||||||
uses: actions/cache/restore@v3
|
uses: actions/cache/restore@v3
|
||||||
with:
|
with:
|
||||||
path: C:\dxsdk
|
path: dx5sdk
|
||||||
key: dx5sdk
|
key: dx5sdk
|
||||||
|
|
||||||
- name: Setup DX5 SDK
|
- name: Download DX5 SDK
|
||||||
if: steps.cache-dx5.outputs.cache-hit != 'true'
|
if: steps.cache-dx5.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
cd dx5sdk
|
cd dx5sdk
|
||||||
|
@ -33,16 +33,21 @@ jobs:
|
||||||
7z x .\idx5sdk.exe
|
7z x .\idx5sdk.exe
|
||||||
7z x .\DX5SDK.EXE
|
7z x .\DX5SDK.EXE
|
||||||
cd cdrom
|
cd cdrom
|
||||||
.\SETUP.EXE /s
|
|
||||||
|
|
||||||
- name: Cache DX5 SDK
|
- name: Cache DX5 SDK
|
||||||
if: steps.cache-dx5.outputs.cache-hit != 'true'
|
if: steps.cache-dx5.outputs.cache-hit != 'true'
|
||||||
id: save-dx5
|
id: save-dx5
|
||||||
uses: actions/cache/save@v3
|
uses: actions/cache/save@v3
|
||||||
with:
|
with:
|
||||||
path: C:\dxsdk
|
path: dx5sdk
|
||||||
key: dx5sdk
|
key: dx5sdk
|
||||||
|
|
||||||
|
- name: Setup DX5 SDK
|
||||||
|
run: |
|
||||||
|
cd dx5sdk
|
||||||
|
cd cdrom
|
||||||
|
.\SETUP.EXE /s
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue