2019-01-06 22:59:55 +01:00
|
|
|
version: '{build}'
|
2015-01-27 04:49:31 +01:00
|
|
|
|
2016-07-26 14:12:18 +02:00
|
|
|
clone_depth: 10
|
2015-01-27 04:49:31 +01:00
|
|
|
|
2019-01-06 22:59:55 +01:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
|
2016-07-26 14:12:18 +02:00
|
|
|
environment:
|
|
|
|
matrix:
|
2018-04-08 23:03:57 +02:00
|
|
|
- VisualStudioVersion: 12.0
|
2019-01-06 22:59:55 +01:00
|
|
|
platform: Win32
|
|
|
|
configuration: Debug
|
|
|
|
vcvarsall_platform: x86
|
|
|
|
PlatformToolset: v120
|
2018-04-08 23:03:57 +02:00
|
|
|
- VisualStudioVersion: 12.0
|
2019-01-06 22:59:55 +01:00
|
|
|
platform: Win32
|
|
|
|
configuration: Release
|
|
|
|
vcvarsall_platform: x86
|
|
|
|
PlatformToolset: v120
|
|
|
|
MYQTDIR: C:\Qt\5.6\msvc2013
|
2018-04-08 23:03:57 +02:00
|
|
|
- VisualStudioVersion: 12.0
|
2019-01-06 22:59:55 +01:00
|
|
|
platform: x64
|
|
|
|
configuration: Debug
|
|
|
|
vcvarsall_platform: x64
|
|
|
|
PlatformToolset: v120
|
2019-07-17 10:22:08 +02:00
|
|
|
cygwin_build: yes
|
2018-04-08 23:03:57 +02:00
|
|
|
- VisualStudioVersion: 12.0
|
2019-01-06 22:59:55 +01:00
|
|
|
platform: x64
|
|
|
|
configuration: Release
|
|
|
|
vcvarsall_platform: x64
|
|
|
|
PlatformToolset: v120
|
|
|
|
MYQTDIR: C:\Qt\5.6\msvc2013_64
|
2019-07-07 18:35:44 +02:00
|
|
|
# FIXME: These are disabled for now. They were broken by ae8653612802b41b70424ec9a5eefe8a1178f6d1
|
|
|
|
# - VisualStudioVersion: 14.0
|
|
|
|
# platform: Win32
|
|
|
|
# configuration: Debug
|
|
|
|
# vcvarsall_platform: x86
|
|
|
|
# PlatformToolset: v140
|
|
|
|
# - VisualStudioVersion: 14.0
|
|
|
|
# platform: Win32
|
|
|
|
# configuration: Release
|
|
|
|
# vcvarsall_platform: x86
|
|
|
|
# PlatformToolset: v140
|
|
|
|
# MYQTDIR: C:\Qt\5.11\msvc2015
|
|
|
|
# - VisualStudioVersion: 14.0
|
|
|
|
# platform: x64
|
|
|
|
# configuration: Debug
|
|
|
|
# vcvarsall_platform: x64
|
|
|
|
# PlatformToolset: v140
|
2019-01-10 08:30:35 +01:00
|
|
|
# That platform causes frequent errors on appveyor due to an unknown infrastructure failure
|
|
|
|
# - VisualStudioVersion: 14.0
|
|
|
|
# platform: x64
|
|
|
|
# configuration: Release
|
|
|
|
# vcvarsall_platform: x64
|
|
|
|
# PlatformToolset: v140
|
2019-01-09 09:06:57 +01:00
|
|
|
# MYQTDIR: C:\Qt\5.11\msvc2015_64
|
2015-01-27 04:49:31 +01:00
|
|
|
|
2019-07-09 07:46:53 +02:00
|
|
|
install:
|
|
|
|
- pip install pytest
|
2020-02-10 11:19:18 +01:00
|
|
|
- SET p=x86
|
|
|
|
- IF "%platform%"=="x64" SET p=x64
|
|
|
|
- curl -fsSL https://github.com/Z3Prover/z3/releases/download/z3-4.8.7/z3-4.8.7-%p%-win.zip -o z3-4.8.7-win.zip
|
2020-02-11 17:42:25 +01:00
|
|
|
- 7z x z3-4.8.7-win.zip -oexternals -r -y
|
|
|
|
- move externals\z3-4.8.7-%p%-win externals\z3
|
2019-07-09 07:46:53 +02:00
|
|
|
|
2015-01-27 04:49:31 +01:00
|
|
|
build_script:
|
2016-07-26 14:12:18 +02:00
|
|
|
- ECHO Building %configuration% %platform% with MSVC %VisualStudioVersion% using %PlatformToolset% PlatformToolset
|
|
|
|
- 'CALL "C:\Program Files (x86)\Microsoft Visual Studio %VisualStudioVersion%\VC\vcvarsall.bat" %vcvarsall_platform%'
|
2019-07-09 07:46:53 +02:00
|
|
|
# Visual studio project..
|
2016-07-26 14:12:18 +02:00
|
|
|
- msbuild "cppcheck.sln" /consoleloggerparameters:Verbosity=minimal /target:Build /property:Configuration="%configuration%";Platform=%platform% /p:PlatformToolset=%PlatformToolset% /maxcpucount /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
2019-07-09 07:46:53 +02:00
|
|
|
# cmake..
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- cmake -DBUILD_TESTS=ON -G"NMake Makefiles" ..
|
|
|
|
- nmake
|
|
|
|
- copy bin\cppcheck.exe ..
|
|
|
|
- cd ..
|
|
|
|
# build gui..
|
2020-02-10 11:19:18 +01:00
|
|
|
- ECHO MYQTDIR=%MYQTDIR%
|
|
|
|
- 'IF defined MYQTDIR cd gui'
|
|
|
|
- 'IF defined MYQTDIR set QTDIR=%MYQTDIR%'
|
|
|
|
- 'IF defined MYQTDIR %QTDIR%\bin\qmake'
|
|
|
|
- 'IF defined MYQTDIR nmake'
|
|
|
|
- 'IF defined MYQTDIR cd ..'
|
2015-01-27 04:49:31 +01:00
|
|
|
|
|
|
|
test_script:
|
2019-07-09 07:46:53 +02:00
|
|
|
- build\bin\testrunner.exe -q
|
2020-01-26 08:23:52 +01:00
|
|
|
- IF EXIST bin\debug\testrunner.exe bin\debug\testrunner.exe -q
|
|
|
|
- IF EXIST bin\testrunner.exe bin\testrunner.exe -q
|
2019-07-09 07:46:53 +02:00
|
|
|
- cd test\cli
|
|
|
|
- python -m pytest test-helloworld.py
|
|
|
|
- python -m pytest test-inline-suppress.py
|
|
|
|
- python -m pytest test-suppress-syntaxError.py
|
2019-07-17 10:22:08 +02:00
|
|
|
- 'IF defined cygwin_build C:\cygwin64\bin\bash -e -l -c "cd /cygdrive/c/projects/cppcheck && make clean && make -j 2 && make test && make checkcfg"'
|
2018-02-26 21:45:21 +01:00
|
|
|
|
|
|
|
artifacts:
|
2018-02-26 21:56:23 +01:00
|
|
|
- path: bin
|
2018-02-26 21:59:53 +01:00
|
|
|
name: CLI binaries
|
|
|
|
type: zip
|
2019-01-06 22:59:55 +01:00
|
|
|
- path: Build\gui
|
|
|
|
name: GUI binaries
|
|
|
|
type: zip
|