isle/.github/workflows/build.yml

51 lines
1 KiB
YAML
Raw Normal View History

2023-06-11 08:17:41 -04:00
name: Build
2023-06-11 08:07:15 -04: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 12:54:16 -04:00
- 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'
2023-06-11 08:07:15 -04:00
run: |
cd dx5sdk
2023-06-11 08:18:32 -04:00
C:\msys64\usr\bin\wget.exe https://archive.org/download/idx5sdk/idx5sdk.exe
2023-06-11 08:07:15 -04:00
7z x .\idx5sdk.exe
7z x .\DX5SDK.EXE
2023-06-11 12:54:16 -04:00
cd dx5sdk
2023-06-11 08:07:15 -04:00
cd cdrom
2023-06-11 08:17:41 -04:00
.\SETUP.EXE /s
2023-06-11 08:07:15 -04:00
- name: Build
2023-06-11 08:27:14 -04:00
shell: cmd
2023-06-11 08:07:15 -04:00
run: |
2023-06-11 08:30:54 -04:00
call .\msvc420\bin\VCVARS32.BAT x86
2023-06-11 08:20:39 -04:00
mkdir Release
2023-06-11 08:30:54 -04:00
.\msvc420\bin\NMAKE.EXE /f isle.mak CFG="ISLE - Win32 Release"
2023-06-11 08:07:15 -04:00
- name: Upload Artifact
uses: actions/upload-artifact@master
with:
name: Win32
path: Release