isle-portable/.github/workflows/build.yml

63 lines
1.3 KiB
YAML
Raw Normal View History

2023-06-11 14:17:41 +02:00
name: Build
2023-06-11 14:07:15 +02:00
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: 'itsmattkc/msvc420'
path: msvc420
2023-06-11 18:54:16 +02:00
2023-06-11 18:59:44 +02:00
- name: Restore cached DX5 SDK
2023-06-11 18:54:16 +02:00
id: cache-dx5
2023-06-11 18:59:44 +02:00
uses: actions/cache/restore@v3
2023-06-11 18:54:16 +02:00
with:
path: dx5sdk
2023-06-11 18:54:16 +02:00
key: dx5sdk
- name: Download DX5 SDK
2023-06-11 18:54:16 +02:00
if: steps.cache-dx5.outputs.cache-hit != 'true'
2023-06-11 14:07:15 +02:00
run: |
cd dx5sdk
2023-06-11 14:18:32 +02:00
C:\msys64\usr\bin\wget.exe https://archive.org/download/idx5sdk/idx5sdk.exe
2023-06-11 14:07:15 +02:00
7z x .\idx5sdk.exe
7z x .\DX5SDK.EXE
cd cdrom
2023-06-11 18:59:44 +02:00
- name: Cache DX5 SDK
if: steps.cache-dx5.outputs.cache-hit != 'true'
id: save-dx5
uses: actions/cache/save@v3
with:
path: dx5sdk
2023-06-11 18:59:44 +02:00
key: dx5sdk
- name: Setup DX5 SDK
run: |
cd dx5sdk
cd cdrom
.\SETUP.EXE /s
2023-06-11 14:07:15 +02:00
- name: Build
2023-06-11 14:27:14 +02:00
shell: cmd
2023-06-11 14:07:15 +02:00
run: |
2023-06-11 14:30:54 +02:00
call .\msvc420\bin\VCVARS32.BAT x86
2023-06-11 14:20:39 +02:00
mkdir Release
2023-06-11 14:30:54 +02:00
.\msvc420\bin\NMAKE.EXE /f isle.mak CFG="ISLE - Win32 Release"
2023-06-11 14:07:15 +02:00
- name: Upload Artifact
uses: actions/upload-artifact@master
with:
name: Win32
path: Release