2020-05-29 14:05:19 +02:00
|
|
|
# Some convenient links:
|
|
|
|
# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md
|
|
|
|
#
|
|
|
|
|
|
|
|
name: release-windows
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2020-10-31 12:23:24 +01:00
|
|
|
- '2.*'
|
2020-05-29 14:05:19 +02:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
2020-10-31 12:23:24 +01:00
|
|
|
workflow_dispatch:
|
2020-05-29 14:05:19 +02:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: cmd
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: windows-2019
|
|
|
|
|
2022-01-04 11:16:28 +01:00
|
|
|
env:
|
|
|
|
# see https://www.pcre.org/original/changelog.txt
|
|
|
|
PCRE_VERSION: 8.45
|
|
|
|
# see https://github.com/Z3Prover/z3/releases:
|
|
|
|
Z3_VERSION: 4.8.10
|
2022-01-28 19:44:39 +01:00
|
|
|
QT_VERSION: 5.15.2
|
2022-01-04 11:16:28 +01:00
|
|
|
|
2020-05-29 14:05:19 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup msbuild.exe
|
2020-11-16 09:17:17 +01:00
|
|
|
uses: microsoft/setup-msbuild@v1.0.2
|
2020-05-29 14:05:19 +02:00
|
|
|
|
2022-01-04 11:16:28 +01:00
|
|
|
- name: Cache PCRE
|
|
|
|
id: cache-pcre
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: pcre-${{ env.PCRE_VERSION }}.zip
|
|
|
|
key: pcre-${{ env.PCRE_VERSION }}
|
|
|
|
|
|
|
|
- name: Download PCRE
|
|
|
|
if: steps.cache-pcre.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
curl -fsSL https://github.com/pfultz2/pcre/archive/refs/tags/%PCRE_VERSION%.zip -o pcre-%PCRE_VERSION%.zip
|
|
|
|
|
2020-05-29 14:05:19 +02:00
|
|
|
- name: Install PCRE
|
|
|
|
run: |
|
2022-01-04 11:16:28 +01:00
|
|
|
7z x pcre-%PCRE_VERSION%.zip
|
|
|
|
cd pcre-%PCRE_VERSION%
|
2022-02-02 13:00:54 +01:00
|
|
|
cmake . -G "Visual Studio 16 2019" -A x64 -DPCRE_BUILD_PCRECPP=OFF -DPCRE_BUILD_PCREGREP=OFF -DPCRE_BUILD_TESTS=OFF
|
2020-05-29 14:05:19 +02:00
|
|
|
msbuild -m PCRE.sln /p:Configuration=Release /p:Platform=x64
|
|
|
|
copy pcre.h ..\externals
|
|
|
|
copy Release\pcre.lib ..\externals\pcre64.lib
|
|
|
|
|
2022-01-04 11:16:28 +01:00
|
|
|
- name: Cache Z3 Library
|
|
|
|
id: cache-z3
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: z3-${{ env.Z3_VERSION }}-x64-win.zip
|
|
|
|
key: z3-${{ env.Z3_VERSION }}-x64-win
|
|
|
|
|
|
|
|
- name: Download Z3 library
|
|
|
|
if: steps.cache-z3.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
curl -fsSL https://github.com/Z3Prover/z3/releases/download/z3-%Z3_VERSION%/z3-%Z3_VERSION%-x64-win.zip -o z3-%Z3_VERSION%-x64-win.zip
|
|
|
|
|
2020-05-29 14:05:19 +02:00
|
|
|
- name: Install Z3 library
|
|
|
|
run: |
|
2022-01-04 11:16:28 +01:00
|
|
|
7z x z3-%Z3_VERSION%-x64-win.zip -oexternals -r -y
|
|
|
|
move externals\z3-%Z3_VERSION%-x64-win externals\z3
|
2020-05-29 14:05:19 +02:00
|
|
|
|
2022-01-28 19:44:39 +01:00
|
|
|
- name: Cache Qt ${{ env.QT_VERSION }}
|
|
|
|
id: cache-qt
|
|
|
|
uses: actions/cache@v1 # not v2!
|
|
|
|
with:
|
|
|
|
path: ../Qt
|
|
|
|
key: Windows-QtCache-${{ env.QT_VERSION }}-qtcharts-qthelp
|
|
|
|
|
|
|
|
- name: Install Qt ${{ env.QT_VERSION }}
|
2020-05-29 14:05:19 +02:00
|
|
|
uses: jurplel/install-qt-action@v2
|
|
|
|
with:
|
2022-01-28 19:44:39 +01:00
|
|
|
version: ${{ env.QT_VERSION }}
|
2020-07-21 17:38:50 +02:00
|
|
|
modules: 'qtcharts qthelp'
|
2022-01-28 19:44:39 +01:00
|
|
|
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
2020-05-29 14:05:19 +02:00
|
|
|
|
|
|
|
- name: Create .qm
|
|
|
|
run: |
|
|
|
|
cd gui
|
|
|
|
lupdate gui.pro
|
|
|
|
lrelease gui.pro -removeidentical
|
|
|
|
|
2020-05-31 18:38:23 +02:00
|
|
|
- name: Matchcompiler
|
|
|
|
run: python tools\matchcompiler.py --write-dir lib
|
|
|
|
|
2020-05-29 14:05:19 +02:00
|
|
|
- name: Build x64 release GUI
|
|
|
|
run: |
|
2020-05-30 23:19:27 +02:00
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
2020-05-29 14:05:19 +02:00
|
|
|
cd gui
|
|
|
|
qmake HAVE_QCHART=yes
|
|
|
|
nmake release
|
2021-04-03 21:28:17 +02:00
|
|
|
env:
|
|
|
|
CL: /MP
|
2020-05-29 14:05:19 +02:00
|
|
|
|
|
|
|
- name: Deploy app
|
|
|
|
run: |
|
|
|
|
windeployqt Build\gui
|
|
|
|
del Build\gui\cppcheck-gui.ilk
|
|
|
|
del Build\gui\cppcheck-gui.pdb
|
|
|
|
|
|
|
|
- name: Build CLI x64 release configuration using MSBuild
|
2020-05-31 18:38:23 +02:00
|
|
|
run: msbuild -m cppcheck.sln /t:cli /p:Configuration=Release-PCRE /p:Platform=x64
|
2020-05-29 14:05:19 +02:00
|
|
|
|
2021-10-16 13:59:39 +02:00
|
|
|
- name: Collect files
|
|
|
|
run: |
|
|
|
|
move Build\gui win_installer\files
|
|
|
|
mkdir win_installer\files\addons
|
|
|
|
copy addons\*.* win_installer\files\addons
|
|
|
|
mkdir win_installer\files\cfg
|
|
|
|
copy cfg\*.cfg win_installer\files\cfg
|
|
|
|
mkdir win_installer\files\platforms
|
|
|
|
copy platforms\*.xml win_installer\files\platforms
|
|
|
|
copy bin\cppcheck.exe win_installer\files
|
|
|
|
copy bin\cppcheck-core.dll win_installer\files
|
|
|
|
copy externals\z3\bin\libz3.dll win_installer\files
|
|
|
|
mkdir win_installer\files\help
|
|
|
|
xcopy /s gui\help win_installer\files\help
|
|
|
|
del win_installer\files\translations\*.qm
|
|
|
|
move gui\*.qm win_installer\files\translations
|
|
|
|
|
|
|
|
|
2020-05-29 14:05:19 +02:00
|
|
|
- name: Build Installer
|
|
|
|
run: |
|
2020-05-30 23:19:27 +02:00
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
2020-05-29 14:05:19 +02:00
|
|
|
cd win_installer
|
2020-10-31 12:23:24 +01:00
|
|
|
REM Read ProductVersion
|
|
|
|
for /f "tokens=4 delims= " %%a in ('find "ProductVersion" productInfo.wxi') do set PRODUCTVER=%%a
|
|
|
|
REM Remove double quotes
|
|
|
|
set PRODUCTVER=%PRODUCTVER:"=%
|
|
|
|
echo ProductVersion=%PRODUCTVER%
|
|
|
|
msbuild -m cppcheck.wixproj /p:Platform=x64,ProductVersion=%PRODUCTVER%.${{ github.run_number }}
|
2020-05-29 14:05:19 +02:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-08-25 19:58:52 +02:00
|
|
|
name: installer
|
2020-05-29 14:05:19 +02:00
|
|
|
path: win_installer/Build/
|
2020-08-25 19:58:52 +02:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: deploy
|
2021-10-16 13:59:39 +02:00
|
|
|
path: win_installer\files
|