mirror of
https://github.com/isledecomp/isle.git
synced 2026-03-01 15:37:37 +00:00
only build cmake (we will compare accuracy using the scripts)
This commit is contained in:
parent
b79397744f
commit
623ffd791c
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
@ -46,25 +46,18 @@ jobs:
|
|||||||
cd cdrom
|
cd cdrom
|
||||||
.\SETUP.EXE /s
|
.\SETUP.EXE /s
|
||||||
|
|
||||||
- name: Build
|
|
||||||
shell: cmd
|
|
||||||
run: |
|
|
||||||
call .\msvc420\bin\VCVARS32.BAT x86
|
|
||||||
mkdir Release
|
|
||||||
.\msvc420\bin\NMAKE.EXE /f isle.mak CFG="ISLE - Win32 Release"
|
|
||||||
|
|
||||||
- name: Setup cmake
|
- name: Setup cmake
|
||||||
uses: jwlawson/actions-setup-cmake@v1.13
|
uses: jwlawson/actions-setup-cmake@v1.13
|
||||||
with:
|
with:
|
||||||
cmake-version: '3.26.4' # Selected a particular version to avoid a look-up
|
cmake-version: '3.26.4' # Selected a particular version to avoid a look-up
|
||||||
|
|
||||||
- name: Build (CMake)
|
- name: Build
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
call .\msvc420\bin\VCVARS32.BAT x86
|
call .\msvc420\bin\VCVARS32.BAT x86
|
||||||
cmake -S . -B cmake-build -DCMAKE_INSTALL_PREFIX=cmake-files -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles"
|
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=Release -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles"
|
||||||
cmake --build cmake-build
|
cmake --build build
|
||||||
cmake --install cmake-build
|
cmake --install build
|
||||||
|
|
||||||
- name: Restore cached original binaries
|
- name: Restore cached original binaries
|
||||||
id: cache-original-binaries
|
id: cache-original-binaries
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user