forked from danmar/cppcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
124 lines (98 loc) · 3.38 KB
/
CI-windows.yml
File metadata and controls
124 lines (98 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Some convenient links:
# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md
#
name: CI-windows
on: [push,pull_request]
defaults:
run:
shell: cmd
jobs:
build:
strategy:
matrix:
# windows 2016 should default to VS 2017. Not supported by setup-msbuild
os: [windows-2019]
fail-fast: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup msbuild.exe
uses: microsoft/setup-msbuild@v1.0.0
- name: Install PCRE
run: |
curl -fsSL https://ftp.pcre.org/pub/pcre/pcre-8.44.zip -o pcre-8.44.zip
7z x pcre-8.44.zip
cd pcre-8.44
cmake . -G "Visual Studio 16 2019" -A x64
msbuild -m PCRE.sln /p:Configuration=Release /p:Platform=x64
dir
dir Release
dir x64
dir x64\Release
copy pcre.h ..\externals
copy Release\pcre.lib ..\externals\pcre64.lib
- name: Install Z3 library
run: |
curl -fsSL https://github.com/Z3Prover/z3/releases/download/z3-4.8.7/z3-4.8.7-x64-win.zip -o z3-4.8.7-win.zip
7z x z3-4.8.7-win.zip -oexternals -r -y
move externals\z3-4.8.7-x64-win externals\z3
- name: Install Qt
uses: jurplel/install-qt-action@v2
- name: Build x64 release GUI
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
cd gui
qmake
nmake
- name: Deploy app
run: |
dir Build
dir Build\gui
windeployqt Build\gui
dir Build\gui
del Build\gui\cppcheck-gui.ilk
del Build\gui\cppcheck-gui.pdb
- name: Build x64 debug configuration using MSBuild
run: msbuild -m cppcheck.sln /p:Configuration=Debug-PCRE /p:Platform=x64
- name: Run Debug test
run: .\bin\debug\testrunner.exe
- name: Build x64 release configuration using MSBuild
run: msbuild -m cppcheck.sln /p:Configuration=Release-PCRE /p:Platform=x64
- name: Run Release test
run: .\bin\testrunner.exe
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_gui
path: Build\gui
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_gui
path: ./**/cfg/*.cfg
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_gui
path: ./**/platforms/*.xml
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_gui
path: externals\z3\bin\*.dll
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_cli
path: ./bin/cppcheck.exe
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_cli
path: ./bin/cppcheck-core.dll
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_cli
path: externals\z3\bin\*.dll
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_cli
path: ./**/cfg/*.cfg
- uses: actions/upload-artifact@v2-preview
with:
name: cppcheck_cli
path: ./**/platforms/*.xml