Skip to content

Commit

Permalink
refs #13132 - release-windows.yml: removed no longer working .qml step
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Oct 30, 2024
1 parent a146a42 commit fc42b47
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,10 @@ jobs:
tools: 'tools_opensslv3_x64'
cache: true

- name: Create .qm
run: |
cd gui || exit /b !errorlevel!
lupdate gui.pro -no-obsolete || exit /b !errorlevel!
lrelease gui.pro -removeidentical || exit /b !errorlevel!
- name: Build x64 release GUI
run: |
; TODO: enable rules?
; specify Release build so matchcompiler is used
:: TODO: enable rules?
:: specify Release build so matchcompiler is used
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_GUI=On -DWITH_QCHART=On -DBUILD_ONLINE_HELP=On || exit /b !errorlevel!
cmake --build build --target cppcheck-gui --config Release || exit /b !errorlevel!
Expand Down Expand Up @@ -113,9 +107,9 @@ jobs:
- name: Build Installer
run: |
cd win_installer || exit /b !errorlevel!
REM Read ProductVersion
:: Read ProductVersion
for /f "tokens=4 delims= " %%a in ('find "ProductVersion" productInfo.wxi') do set PRODUCTVER=%%a
REM Remove double quotes
:: Remove double quotes
set PRODUCTVER=%PRODUCTVER:"=%
@echo ProductVersion="%PRODUCTVER%" || exit /b !errorlevel!
msbuild -m cppcheck.wixproj -p:Platform=x64,ProductVersion=%PRODUCTVER%.${{ github.run_number }} || exit /b !errorlevel!
Expand Down

0 comments on commit fc42b47

Please sign in to comment.