Skip to content

Generate HTMLHelp manual changelog on compile time #69

Generate HTMLHelp manual changelog on compile time

Generate HTMLHelp manual changelog on compile time #69

name: build-artifact
on: push
jobs:
build-matrix:
runs-on: windows-2022
strategy:
matrix:
platform: [x64, Win32]
configuration: [Release, Debug, ASAN-Release, ASAN-Debug]
steps:
- uses: actions/checkout@master
with:
submodules: "recursive"
fetch-depth: 0
- name: Build program
shell: cmd
run: |
for /f "tokens=*" %%a in ('git describe --tags') do (set commithash=%%a)
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsamd64_x86.bat"
call msbuild -m:5 -nologo -p:Configuration="${{ matrix.configuration }}" -p:Platform="${{ matrix.platform }}"
if %ERRORLEVEL%==1 exit %ERRORLEVEL%
call release.bat ${{ matrix.configuration }} ${{ matrix.platform }} %commithash%_%GITHUB_RUN_ID%
- name: Upload binaries
uses: actions/upload-artifact@master
with:
name: build-artifacts
path: distribute/*.7z