Add crashRpt in CI. #68
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: premake5-windows | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'src/**' | |
- '.github/workflows/premake5-windows.yml' | |
- 'premake5.lua' | |
pull_request: | |
paths: | |
- 'src/**' | |
- '.github/workflows/premake5-windows.yml' | |
- 'premake5.lua' | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: checkout premake5 | |
uses: actions/checkout@v3 | |
with: | |
repository: premake/premake-core | |
path: premake-build | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- name: Build premake5 | |
run: | | |
$vcvarall_path = vswhere -find VC\Auxiliary\Build\vcvarsall.bat | |
cmd.exe /c "call ""$vcvarall_path"" x86_amd64 && cd premake-build && nmake -f Bootstrap.mak MSDEV=vs2022 windows-msbuild PLATFORM=Win32 CONFIG=release" | |
cp premake-build/bin/release/premake5.exe ./ | |
- name: Retrieve CrashRpt_v.1.4.3_r1645 | |
run: | | |
curl -o CrashRpt_v.1.4.3_r1645.7z https://kumisystems.dl.sourceforge.net/project/crashrpt/CrashRpt_v.1.4.3_r1645.7z | |
7z x -oCrashRpt_v.1.4.3_r1645 CrashRpt_v.1.4.3_r1645.7z "lib/*.*" "include/*.*" | |
7z e -odata CrashRpt_v.1.4.3_r1645.7z bin/CrashRpt1403.dll bin/CrashSender1403.exe bin/crashrpt_lang.ini | |
7z e -odata/CrashRpt CrashRpt_v.1.4.3_r1645.7z "lang_files/*.ini" | |
- name: run premake5 | |
run: ./premake5.exe vs2022 --to=solution/vs2022/maxr --crashRpt_root=CrashRpt_v.1.4.3_r1645 | |
- name: build | |
run: | | |
cd solution/vs2022/maxr | |
nuget install packages.config -OutputDirectory packages | |
msbuild.exe /property:Configuration=Release Maxr.sln | |
- name: run tests | |
run: | | |
cd solution/vs2022/maxr/bin/Release | |
./maxr_tests.exe | |
- name: upload maxr | |
uses: actions/upload-artifact@v3 | |
with: | |
name: maxr | |
path: | | |
data/**.exe | |
data/**.dll |