-
Notifications
You must be signed in to change notification settings - Fork 83
214 lines (170 loc) · 6.64 KB
/
CI_build.yml
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
name: CI_build
on: [push, pull_request]
jobs:
# release build not available with active qttest
# build splitted between D: and C: drive due to disk size
build_windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
build_configuration: [Debug]
build_platform: [x64]
steps:
- name: Install openssl dev
run: |
choco install openssl --version=3.1.1
dir "C:\Program Files"
- name: Checkout repo
uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.5.*'
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity qtimageformats'
setup-python: 'false'
- name: generate cmake
run: |
cmake -G "Visual Studio 17 2022" -A ${{ matrix.build_platform }} -T "v143" D:\a\AusweisApp\AusweisApp -B c:\_build
- name: build cmake
run: |
cmake --build c:\_build --config ${{ matrix.build_configuration }} --target package
# cmake --install c:\_build
# - name: run ctest
# run: |
# ctest --test-dir c:\_build --output-on-failure -C "${{ matrix.build_configuration }}"
build_linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build_configuration: [Release]
build_platform: ["Unix Makefiles"]
steps:
- uses: actions/checkout@v4
- name: Install packages via apt
run: |
sudo apt update -qq && sudo apt install -y cmake pkg-config libssl-dev libudev-dev libhttp-parser-dev libpcsclite-dev libgl1-mesa-dev qt6-l10n-tools
# ubuntu 22.04 comes just with QT 6.2.4 and Qt >= 6.4 is required
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.5.*'
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity'
setup-python: 'false'
- name: generate cmake
run: |
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" -B _build
- name: build cmake
run: |
cmake --build _build --config ${{ matrix.build_configuration }} --target package
sudo cmake --install _build
- name: run ctest
run: |
ctest --test-dir _build --output-on-failure -C "${{ matrix.build_configuration }}"
# build_linux_android:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# build_configuration: [Release]
# build_platform: ["Unix Makefiles"]
# steps:
# - uses: actions/checkout@v4
# - name: Install packages via apt
# run: |
# sudo apt update -qq && sudo apt install -y cmake pkg-config libssl-dev libudev-dev libhttp-parser-dev libpcsclite-dev libgl1-mesa-dev qt6-l10n-tools doxygen graphviz
# - name: Install Qt
# uses: jurplel/install-qt-action@v3
# with:
# version: '6.5.3'
# host: 'linux'
# target: 'desktop'
# arch: 'gcc_64'
# modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity'
# setup-python: 'false'
# - name: Install Qt
# uses: jurplel/install-qt-action@v3
# with:
# version: '6.5.*'
# host: 'linux'
# target: 'android'
# arch: 'android_x86_64'
# modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity'
# setup-python: 'false'
# - name: generate cmake
# run: |
# cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" -DQT_HOST_PATH=/home/runner/work/AusweisApp/Qt/6.5.3/gcc_64 -DCMAKE_ANDROID_ARCH_ABI=x86_64 -DCMAKE_TOOLCHAIN_FILE=../cmake/android.toolchain.cmake -B _build
# - name: build cmake
# run: |
# cmake --build _build --config ${{ matrix.build_configuration }}
# - name: run ctest
# run: |
# ctest --test-dir _build --output-on-failure -C "${{ matrix.build_configuration }}"
# due to https://bugreports.qt.io/browse/QTBUG-117765 QT 6.5.2 must be used instead of 6.5.3
build_macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
build_configuration: [Release]
build_platform: ["Unix Makefiles"]
steps:
- uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.5.2'
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity qtimageformats'
setup-python: 'false'
- name: generate cmake
run: |
export OPENSSL_ROOT=/usr/local/opt/openssl/bin
export LDFLAGS=-L/usr/local/opt/openssl/lib
export CPPFLAGS=-I/usr/local/opt/openssl/include
export PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig/
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" -B _build
- name: build cmake
run: |
cmake --build _build --config ${{ matrix.build_configuration }}
- name: run ctest
run: |
ctest --test-dir _build --output-on-failure -C "${{ matrix.build_configuration }}"
# build_ios:
# runs-on: macos-latest
# strategy:
# fail-fast: false
# matrix:
# build_configuration: [Release]
# build_platform: ["Unix Makefiles"]
# steps:
# - uses: actions/checkout@v4
# - name: Install Qt
# uses: jurplel/install-qt-action@v3
# with:
# version: '6.5.*'
# modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity qtimageformats qtquick3d'
# setup-python: 'false'
# - name: Install Qt
# uses: jurplel/install-qt-action@v3
# with:
# version: '6.5.*'
# host: 'mac'
# target: 'ios'
# modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity qtimageformats qtquick3d'
# setup-python: 'false'
# - name: generate cmake
# run: |
# export OPENSSL_ROOT=/usr/local/opt/openssl/bin
# export LDFLAGS=-L/usr/local/opt/openssl/lib
# export CPPFLAGS=-I/usr/local/opt/openssl/include
# export PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig/
# cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" -DQT_HOST_PATH=/Users/runner/work/AusweisApp/Qt/6.5.3/macos -DCMAKE_TOOLCHAIN_FILE=../cmake/iOS.toolchain.cmake -B _build
# - name: build cmake
# run: |
# cmake --build _build --config ${{ matrix.build_configuration }}
# - name: run ctest
# run: |
# ctest --test-dir _build --output-on-failure -C "${{ matrix.build_configuration }}"