2020-04-16 21:19:57 +02:00
|
|
|
# Some convenient links:
|
|
|
|
# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md
|
|
|
|
#
|
|
|
|
|
|
|
|
name: CI-windows
|
|
|
|
|
|
|
|
on: [push,pull_request]
|
|
|
|
|
2020-04-17 11:57:53 +02:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: cmd
|
|
|
|
|
2020-04-16 21:19:57 +02:00
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-04 19:37:53 +01:00
|
|
|
os: [windows-2019, windows-2022]
|
2021-02-24 22:41:25 +01:00
|
|
|
arch: [x64, x86]
|
2022-02-04 19:37:53 +01:00
|
|
|
qt_ver: ['', 5.15.2]
|
2021-04-03 21:22:39 +02:00
|
|
|
fail-fast: false
|
2020-04-16 21:19:57 +02:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
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
|
|
|
|
|
2020-04-16 21:19:57 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-01-04 11:16:28 +01:00
|
|
|
if: matrix.arch == 'x64' || matrix.qt_ver == ''
|
2020-04-16 21:19:57 +02:00
|
|
|
|
2021-10-11 19:14:46 +02:00
|
|
|
- name: Set up Python 3.10
|
2021-10-09 16:09:20 +02:00
|
|
|
if: matrix.qt_ver == ''
|
2021-04-03 21:22:39 +02:00
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2021-10-11 19:14:46 +02:00
|
|
|
python-version: '3.10'
|
2021-04-03 21:22:39 +02:00
|
|
|
|
2022-02-04 19:37:53 +01:00
|
|
|
- name: Set up Visual Studio environment
|
|
|
|
uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
with:
|
|
|
|
arch: ${{ matrix.arch }}
|
2021-02-24 22:41:25 +01:00
|
|
|
|
2022-01-04 11:16:28 +01:00
|
|
|
- name: Cache PCRE
|
|
|
|
id: cache-pcre
|
|
|
|
uses: actions/cache@v2
|
|
|
|
if: matrix.arch == 'x64' || matrix.qt_ver == ''
|
|
|
|
with:
|
|
|
|
path: pcre-${{ env.PCRE_VERSION }}.zip
|
|
|
|
key: pcre-${{ env.PCRE_VERSION }}
|
|
|
|
|
|
|
|
- name: Download PCRE
|
|
|
|
if: (matrix.arch == 'x64' || matrix.qt_ver == '') && 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 || exit /b !errorlevel!
|
|
|
|
|
2020-04-19 10:46:51 +02:00
|
|
|
- name: Install PCRE
|
2022-01-04 11:16:28 +01:00
|
|
|
if: matrix.arch == 'x64' || matrix.qt_ver == ''
|
2020-04-19 10:46:51 +02:00
|
|
|
run: |
|
2021-02-24 22:41:25 +01:00
|
|
|
7z x pcre-%PCRE_VERSION%.zip || exit /b !errorlevel!
|
|
|
|
cd pcre-%PCRE_VERSION% || exit /b !errorlevel!
|
|
|
|
cmake . -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DPCRE_BUILD_PCRECPP=Off -DPCRE_BUILD_TESTS=Off -DPCRE_BUILD_PCREGREP=Off || exit /b !errorlevel!
|
|
|
|
nmake || exit /b !errorlevel!
|
|
|
|
copy pcre.h ..\externals || exit /b !errorlevel!
|
|
|
|
if "${{ matrix.arch }}" == "x86" (
|
|
|
|
copy pcre.lib ..\externals\pcre.lib || exit /b !errorlevel!
|
|
|
|
) else (
|
|
|
|
copy pcre.lib ..\externals\pcre64.lib || exit /b !errorlevel!
|
|
|
|
)
|
2020-12-13 19:39:52 +01:00
|
|
|
env:
|
2021-04-03 21:28:17 +02:00
|
|
|
CL: /MP
|
2020-04-19 10:46:51 +02:00
|
|
|
|
2022-01-04 11:16:28 +01:00
|
|
|
- name: Cache Z3 Library
|
|
|
|
id: cache-z3
|
|
|
|
uses: actions/cache@v2
|
|
|
|
if: matrix.arch == 'x64' || matrix.qt_ver == ''
|
|
|
|
with:
|
|
|
|
path: z3-${{ env.Z3_VERSION }}-${{ matrix.arch }}-win.zip
|
|
|
|
key: z3-${{ env.Z3_VERSION }}-${{ matrix.arch }}-win
|
|
|
|
|
|
|
|
- name: Download Z3 library
|
|
|
|
if: (matrix.arch == 'x64' || matrix.qt_ver == '') && steps.cache-z3.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
curl -fsSL https://github.com/Z3Prover/z3/releases/download/z3-%Z3_VERSION%/z3-%Z3_VERSION%-${{ matrix.arch }}-win.zip -o z3-%Z3_VERSION%-${{ matrix.arch }}-win.zip || exit /b !errorlevel!
|
|
|
|
|
2020-04-16 21:19:57 +02:00
|
|
|
- name: Install Z3 library
|
2022-01-04 11:16:28 +01:00
|
|
|
if: matrix.arch == 'x64' || matrix.qt_ver == ''
|
2020-04-16 21:19:57 +02:00
|
|
|
run: |
|
2022-01-04 11:16:28 +01:00
|
|
|
7z x z3-%Z3_VERSION%-${{ matrix.arch }}-win.zip -oexternals -r -y || exit /b !errorlevel!
|
2021-02-24 22:41:25 +01:00
|
|
|
move externals\z3-%Z3_VERSION%-${{ matrix.arch }}-win externals\z3 || exit /b !errorlevel!
|
2020-04-19 10:46:51 +02:00
|
|
|
|
2022-01-28 19:44:39 +01:00
|
|
|
- name: Cache Qt ${{ matrix.qt_ver }}
|
|
|
|
if: matrix.qt_ver != '' && matrix.arch == 'x64'
|
|
|
|
id: cache-qt
|
|
|
|
uses: actions/cache@v1 # not v2!
|
|
|
|
with:
|
|
|
|
path: ../Qt
|
|
|
|
key: Windows-QtCache-${{ matrix.qt_ver }}-qtcharts
|
|
|
|
|
2021-02-24 22:41:25 +01:00
|
|
|
# no 32-bit Qt available
|
2021-10-09 16:09:20 +02:00
|
|
|
- name: Install Qt ${{ matrix.qt_ver }}
|
|
|
|
if: matrix.qt_ver != '' && matrix.arch == 'x64'
|
2020-04-17 11:57:53 +02:00
|
|
|
uses: jurplel/install-qt-action@v2
|
2020-05-03 10:09:52 +02:00
|
|
|
with:
|
2021-10-09 16:09:20 +02:00
|
|
|
version: ${{ matrix.qt_ver }}
|
2020-05-03 10:09:52 +02:00
|
|
|
modules: 'qtcharts'
|
2022-01-28 19:44:39 +01:00
|
|
|
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
2020-04-16 21:19:57 +02:00
|
|
|
|
2021-04-03 21:22:39 +02:00
|
|
|
- name: Install missing Python packages
|
2021-10-09 16:09:20 +02:00
|
|
|
if: matrix.qt_ver == ''
|
2021-04-03 21:22:39 +02:00
|
|
|
run: |
|
2021-10-09 16:09:20 +02:00
|
|
|
python -m pip install pip --upgrade || exit /b !errorlevel!
|
|
|
|
python -m pip install pytest || exit /b !errorlevel!
|
|
|
|
python -m pip install pytest-custom_exit_code || exit /b !errorlevel!
|
2021-04-03 21:22:39 +02:00
|
|
|
|
2021-02-24 22:41:25 +01:00
|
|
|
- name: Build GUI release
|
2021-10-09 16:09:20 +02:00
|
|
|
if: matrix.qt_ver != '' && matrix.arch == 'x64'
|
2020-04-17 11:57:53 +02:00
|
|
|
run: |
|
2021-02-24 22:41:25 +01:00
|
|
|
cd gui || exit /b !errorlevel!
|
|
|
|
qmake HAVE_QCHART=yes || exit /b !errorlevel!
|
|
|
|
nmake release || exit /b !errorlevel!
|
2021-04-03 21:28:17 +02:00
|
|
|
env:
|
|
|
|
CL: /MP
|
2020-04-17 11:57:53 +02:00
|
|
|
|
2020-04-22 12:05:32 +02:00
|
|
|
- name: Deploy GUI
|
2021-10-09 16:09:20 +02:00
|
|
|
if: matrix.qt_ver != '' && matrix.arch == 'x64'
|
2020-04-17 11:57:53 +02:00
|
|
|
run: |
|
2021-02-24 22:41:25 +01:00
|
|
|
windeployqt Build\gui || exit /b !errorlevel!
|
|
|
|
del Build\gui\cppcheck-gui.ilk || exit /b !errorlevel!
|
|
|
|
del Build\gui\cppcheck-gui.pdb || exit /b !errorlevel!
|
2021-07-08 21:21:35 +02:00
|
|
|
|
2022-02-04 19:37:53 +01:00
|
|
|
- name: Run CMake
|
|
|
|
if: false && matrix.qt_ver == ''
|
2021-02-24 22:41:25 +01:00
|
|
|
run: |
|
|
|
|
set ARCH=${{ matrix.arch }}
|
|
|
|
if "${{ matrix.arch }}" == "x86" (
|
|
|
|
set ARCH=Win32
|
|
|
|
)
|
2021-07-08 21:21:35 +02:00
|
|
|
rm -rf build
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2021-10-09 16:09:20 +02:00
|
|
|
cmake -DBUILD_TESTS=On .. || exit /b !errorlevel!
|
2020-04-16 21:19:57 +02:00
|
|
|
|
2021-07-08 21:21:35 +02:00
|
|
|
- name: Build CLI debug configuration using MSBuild
|
2021-10-09 16:09:20 +02:00
|
|
|
if: matrix.qt_ver == ''
|
2021-07-08 21:21:35 +02:00
|
|
|
run: |
|
|
|
|
set ARCH=${{ matrix.arch }}
|
|
|
|
if "${{ matrix.arch }}" == "x86" (
|
|
|
|
set ARCH=Win32
|
|
|
|
)
|
2022-02-04 19:37:53 +01:00
|
|
|
:: cmake --build build --target check --config Debug || exit /b !errorlevel!
|
|
|
|
msbuild -m cppcheck.sln /p:Configuration=Debug-PCRE;Platform=%ARCH% -maxcpucount || exit /b !errorlevel!
|
|
|
|
|
|
|
|
- name: Run Debug test
|
|
|
|
if: matrix.qt_ver == ''
|
|
|
|
run: .\bin\debug\testrunner.exe || exit /b !errorlevel!
|
2020-04-16 21:19:57 +02:00
|
|
|
|
2021-02-24 22:41:25 +01:00
|
|
|
- name: Build CLI release configuration using MSBuild
|
2021-10-09 16:09:20 +02:00
|
|
|
if: matrix.qt_ver == ''
|
2021-02-24 22:41:25 +01:00
|
|
|
run: |
|
|
|
|
set ARCH=${{ matrix.arch }}
|
|
|
|
if "${{ matrix.arch }}" == "x86" (
|
|
|
|
set ARCH=Win32
|
|
|
|
)
|
2022-02-04 19:37:53 +01:00
|
|
|
:: cmake --build build --target check --config Release || exit /b !errorlevel!
|
|
|
|
msbuild -m cppcheck.sln /p:Configuration=Release-PCRE;Platform=%ARCH% -maxcpucount || exit /b !errorlevel!
|
|
|
|
|
|
|
|
- name: Run Release test
|
|
|
|
if: matrix.qt_ver == ''
|
|
|
|
run: .\bin\testrunner.exe || exit /b !errorlevel!
|
2021-04-03 21:22:39 +02:00
|
|
|
|
|
|
|
- name: Run test/cli
|
2021-10-09 16:09:20 +02:00
|
|
|
if: matrix.qt_ver == ''
|
2021-04-03 21:22:39 +02:00
|
|
|
run: |
|
|
|
|
:: since FILESDIR is not set copy the binary to the root so the addons are found
|
2022-02-04 19:37:53 +01:00
|
|
|
:: copy .\build\bin\Release\cppcheck.exe .\cppcheck.exe || exit /b !errorlevel!
|
|
|
|
copy .\bin\cppcheck.exe .\cppcheck.exe || exit /b !errorlevel!
|
|
|
|
copy .\bin\cppcheck-core.dll .\cppcheck-core.dll || exit /b !errorlevel!
|
2021-04-03 21:22:39 +02:00
|
|
|
cd test/cli || exit /b !errorlevel!
|
2021-10-03 00:16:44 +02:00
|
|
|
:: python -m pytest --suppress-no-test-exit-code test-clang-import.py || exit /b !errorlevel!
|
2021-04-03 21:22:39 +02:00
|
|
|
python -m pytest test-helloworld.py || exit /b !errorlevel!
|
|
|
|
python -m pytest test-inline-suppress.py || exit /b !errorlevel!
|
|
|
|
python -m pytest test-more-projects.py || exit /b !errorlevel!
|
|
|
|
python -m pytest test-proj2.py || exit /b !errorlevel!
|
|
|
|
python -m pytest test-suppress-syntaxError.py || exit /b !errorlevel!
|
2021-07-07 10:58:13 +02:00
|
|
|
|
|
|
|
- name: Test addons
|
2021-10-09 16:09:20 +02:00
|
|
|
if: matrix.qt_ver == ''
|
2021-07-07 10:58:13 +02:00
|
|
|
run: |
|
2021-07-17 22:36:03 +02:00
|
|
|
.\cppcheck.exe --addon=misra --inline-suppr --enable=information --error-exitcode=1 addons\test\misra\misra-ctu-*-test.c
|
2021-07-11 17:23:33 +02:00
|
|
|
cd addons\test
|
2021-07-22 08:46:28 +02:00
|
|
|
..\..\cppcheck.exe --dump -DDUMMY --suppress=uninitvar --inline-suppr misra\misra-test.c --std=c89 --platform=unix64 && python3 ..\misra.py -verify misra\misra-test.c.dump
|
2021-07-07 10:58:13 +02:00
|
|
|
|