actions can't handle it, only cache the download

This commit is contained in:
stonedDiscord 2023-06-11 19:02:41 +02:00 committed by GitHub
parent dedc88d7ca
commit 6b6f32e8d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: |