PA-PK-AS-REP-Win2k ::= PaPkAsRep
[metze/wireshark/wip.git] / appveyor.yml
1 version: build{build}
2 image: Visual Studio 2015
3
4 environment:
5   WIRESHARK_BASE_DIR: C:\wireshark-libs
6   matrix:
7     # Note: if VS2017 win32 is added, just use Qt msvc2015 (binary compatible).
8     - PLATFORM: x64
9       CMAKE_GENERATOR: Visual Studio 15 2017 Win64
10       QT5_BASE_DIR: C:\Qt\5.11\msvc2017_64
11       APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
12     # x86 does not work here, cmake expects win32/Win32 (case insensitive?)
13     - PLATFORM: win32
14       CMAKE_GENERATOR: Visual Studio 14 2015
15       QT5_BASE_DIR: C:\Qt\5.11\msvc2015
16     - PLATFORM: x64
17       CMAKE_GENERATOR: Visual Studio 14 2015 Win64
18       QT5_BASE_DIR: C:\Qt\5.11\msvc2015_64
19
20 cache:
21   - '%WIRESHARK_BASE_DIR%'
22   - C:\ProgramData\chocolatey\bin
23   - C:\ProgramData\chocolatey\lib
24
25 install:
26   - choco install winflexbison
27   # Java is already installed, prevent an expensive upgrade (102 seconds).
28   - choco install --ignore-dependencies asciidoctorj docbook-bundle xsltproc
29   # Py2 fails the test_tshark_unicode_display_filter test, so use Py3.
30   - set PATH=C:\Python37-x64;C:\Python37-x64\Scripts;%PATH%
31   - pip install pytest pytest-xdist
32   - ps: |   # For pkcs11 tests.
33       Invoke-WebRequest -Uri https://github.com/disig/SoftHSM2-for-Windows/releases/download/v2.5.0/SoftHSM2-2.5.0.msi -OutFile $Env:WIRESHARK_BASE_DIR\SoftHSM2-2.5.0.msi
34       & msiexec /qn /i $Env:WIRESHARK_BASE_DIR\SoftHSM2-2.5.0.msi
35
36 # Note: the NSIS installer lacks debug dlls for Debug builds.
37 configuration: RelWithDebInfo
38
39 build:
40   parallel: true
41   project: build\Wireshark.sln
42
43 before_build:
44   - perl tools/make-version.pl --set-release --untagged-version-extra=-{vcsinfo}-AppVeyor --tagged-version-extra=-AppVeyor
45   - mkdir build
46   - cd build
47   - cmake -E time cmake -G "%CMAKE_GENERATOR%" ..
48
49 after_build:
50   - msbuild /m nsis_package_prep.vcxproj
51   - msbuild /m nsis_package.vcxproj
52   # Relocate the installer such that the artifact URL looks nicer.
53   - move packaging\nsis\*.exe ..
54
55 before_test:
56   - msbuild /m test-programs.vcxproj
57
58 test_script:
59   - pytest
60
61 on_finish:
62   - ps: |
63       $Tshark = "run\\$Env:CONFIGURATION\\tshark.exe"
64       if (Test-Path $Tshark) { & $Tshark --version }
65
66 # AppVeyor prevents to store artifacts exceeding 50 GB. Commenting out
67 # their upload for now. They can be re-enabled on your own repo from the
68 # configuration page:
69 # https://ci.appveyor.com/project/<username>/wireshark/settings/artifacts
70 # artifacts:
71 #  - path: Wireshark-*.exe
72
73 deploy: off