forked from solvcon/solvcon
-
Notifications
You must be signed in to change notification settings - Fork 0
466 lines (391 loc) · 16.8 KB
/
Copy pathdevbuild.yml
File metadata and controls
466 lines (391 loc) · 16.8 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
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
name: devbuild
on:
push:
pull_request:
types: [opened, reopened, synchronize, labeled, unlabeled]
schedule:
- cron: '34 17 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check_skip:
uses: ./.github/workflows/check_skip_ci.yml
permissions:
contents: read
pull-requests: read
issues: read
standalone_buffer:
needs: [check_skip]
if: |
needs.check_skip.outputs.skip != 'true' && (
github.event_name == 'pull_request' ||
(github.event_name == 'push' &&
(vars.MMGH_PUSH_RUN_BRANCH == '*' ||
contains(vars.MMGH_PUSH_RUN_BRANCH, github.ref_name))) ||
(github.event_name == 'schedule' && vars.MMGH_NIGHTLY == 'enable'))
name: standalone_buffer_${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: ${{ fromJSON(vars.MMGH_TIMEOUT_STANDALONE_BUFFER || '10') }}
strategy:
matrix:
os: [ubuntu-24.04]
cmake_build_type: [Release]
fail-fast: false
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
- name: event name
run: |
echo "github.event_name: ${{ github.event_name }}"
- name: setup dependencies
uses: ./.github/actions/setup_linux
with:
workflow: 'standalone_buffer'
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2.23
with:
key: ${{ runner.os }}-standalone-buffer-${{ matrix.cmake_build_type }}
restore-keys: ${{ runner.os }}-standalone-buffer-${{ matrix.cmake_build_type }}
create-symlink: true
- name: make standalone_buffer
run: |
echo "::group::make standalone_buffer"
make standalone_buffer_setup
make standalone_buffer
echo "::endgroup::"
build:
needs: [check_skip]
if: |
needs.check_skip.outputs.skip != 'true' && (
github.event_name == 'pull_request' ||
(github.event_name == 'push' &&
(vars.MMGH_PUSH_RUN_BRANCH == '*' ||
contains(vars.MMGH_PUSH_RUN_BRANCH, github.ref_name))) ||
(github.event_name == 'schedule' &&
vars.MMGH_NIGHTLY == 'enable'))
name: build_${{ matrix.os }}_${{ matrix.cmake_build_type }}
runs-on: ${{ matrix.os }}
timeout-minutes: ${{ fromJSON(vars.MMGH_TIMEOUT_BUILD || '45') }}
env:
# Cap build parallelism. The github-hosted runners have only 3 (macOS)
# / 4 (ubuntu) virtual cores shared with co-tenant VMs, so the default
# unbounded `make -j` oversubscribes memory and CPU; on the 7 GB arm64
# macOS runner that swaps until the job hits its timeout. -j2 is the
# safe bet on both.
MAKE_PARALLEL: -j2
QT_DEBUG_PLUGINS: 1
# QT_QPA_PLATFORM is set per-OS by the setup actions (xcb on Linux via
# Xvfb, offscreen on macOS). Do not set it at the job level.
PIP_BREAK_SYSTEM_PACKAGES: 1 # disabling PEP668 (for MacOS runner)
# Fix issue: https://github.com/solvcon/solvcon/issues/366
# Use custom config for jurplel/install-qt-action@v4
AQT_CONFIG: "thirdparty/aqt_settings.ini"
strategy:
matrix:
os: [ubuntu-24.04, macos-26]
cmake_build_type: [Release]
fail-fast: false
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
- name: event name
run: |
echo "github.event_name: ${{ github.event_name }}"
- name: setup dependencies for Linux
if: runner.os == 'Linux'
uses: ./.github/actions/setup_linux
with:
workflow: 'build'
- name: setup dependencies for macOS
if: runner.os == 'macOS'
uses: ./.github/actions/setup_macos
with:
workflow: 'build'
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2.23
with:
key: ${{ runner.os }}-${{ matrix.cmake_build_type }}
restore-keys: ${{ runner.os }}-${{ matrix.cmake_build_type }}
create-symlink: true
- name: make gtest BUILD_QT=OFF
run: |
echo "::group::make gtest BUILD_QT=OFF"
make gtest \
VERBOSE=1 USE_CLANG_TIDY=OFF \
BUILD_QT=OFF
echo "::endgroup::"
- name: make buildext BUILD_QT=OFF
run: |
echo "::group::make buildext BUILD_QT=OFF"
rm -f build/*/Makefile
make cmake \
VERBOSE=1 USE_CLANG_TIDY=OFF \
BUILD_QT=OFF \
CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3)"
make buildext VERBOSE=1
echo "::endgroup::"
- name: make pytest BUILD_QT=OFF
run: |
echo "::group::make pytest BUILD_QT=OFF"
python3 -c "import solvcon; assert solvcon.HAS_PILOT == False"
JOB_MAKE_ARGS="${JOB_MAKE_ARGS} VERBOSE=1"
if [ "${{ matrix.os }}" == "macos-26" ] ; then \
JOB_MAKE_ARGS="${JOB_MAKE_ARGS} BUILD_METAL=ON" ; \
fi
make pytest ${JOB_MAKE_ARGS}
echo "::endgroup::"
- name: make buildext BUILD_QT=ON
run: |
echo "::group::make buildext BUILD_QT=ON"
rm -f build/*/Makefile
make cmake \
VERBOSE=1 USE_CLANG_TIDY=OFF \
BUILD_QT=ON \
CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3)"
make buildext VERBOSE=1
echo "::endgroup::"
- name: make pytest BUILD_QT=ON
run: |
echo "::group::make pytest BUILD_QT=ON"
python3 -c "import solvcon; assert solvcon.HAS_PILOT == True"
JOB_MAKE_ARGS="${JOB_MAKE_ARGS} VERBOSE=1"
if [ "${{ matrix.os }}" == "macos-26" ] ; then \
# PySide6 installed by pip will bundle with a prebuilt Qt,
# this will cause duplicated symbol.
# Solve this issue by removed PySide6 prebuilt Qt library
PYSIDE6_PATH=$(python3 -c "import sys, os, PySide6; sys.stdout.write(os.path.dirname(PySide6.__file__))")
echo "pyside6 path: ${PYSIDE6_PATH}"
rm -rf ${PYSIDE6_PATH}/Qt/lib/*.framework
# maunally add homebrew's Qt rpath to PySide6
install_name_tool -add_rpath $(qtpaths --install-prefix)/lib ${PYSIDE6_PATH}/QtWidgets.abi3.so
install_name_tool -add_rpath $(qtpaths --install-prefix)/lib ${PYSIDE6_PATH}/QtGui.abi3.so
install_name_tool -add_rpath $(qtpaths --install-prefix)/lib ${PYSIDE6_PATH}/QtCore.abi3.so
JOB_MAKE_ARGS="${JOB_MAKE_ARGS} BUILD_METAL=ON" ; \
fi
make pytest ${JOB_MAKE_ARGS}
echo "::endgroup::"
- name: make pilot
run: |
echo "::group::make pilot"
rm -f build/*/Makefile
make pilot \
VERBOSE=1 USE_CLANG_TIDY=OFF \
BUILD_QT=ON \
CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3)"
echo "::endgroup::"
- name: make run_pilot_pytest
run: |
echo "::group::make run_pilot_pytest"
export LD_LIBRARY_PATH=$(python3 -c "import sys, os, shiboken6; sys.stdout.write(os.path.dirname(shiboken6.__file__))")
make run_pilot_pytest VERBOSE=1
echo "::endgroup::"
# FIXME: turn off until all issues resolved
- name: make cmake USE_SANITIZER=ON & make pytest
run: |
echo "::group::make cmake USE_SANITIZER=ON & make pytest"
export ASAN_OPTIONS=verify_asan_link_order=0
rm -f build/*/Makefile
make cmake \
VERBOSE=1 USE_CLANG_TIDY=OFF \
BUILD_QT=OFF \
CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_SANITIZER=OFF"
make buildext VERBOSE=1
make pytest VERBOSE=1
echo "::endgroup::"
build_windows:
needs: [check_skip]
if: |
needs.check_skip.outputs.skip != 'true' && (
github.event_name == 'pull_request' ||
(github.event_name == 'push' &&
(vars.MMGH_PUSH_RUN_BRANCH == '*' ||
contains(vars.MMGH_PUSH_RUN_BRANCH, github.ref_name))) ||
(github.event_name == 'schedule' &&
vars.MMGH_NIGHTLY == 'enable'))
name: build_${{ matrix.os }}_${{ matrix.cmake_build_type }}
runs-on: ${{ matrix.os }}
timeout-minutes: ${{ fromJSON(vars.MMGH_TIMEOUT_BUILD || '45') }}
env:
QT_DEBUG_PLUGINS: 1
# Fix issue: https://github.com/solvcon/solvcon/issues/366
# Use custom config for jurplel/install-qt-action@v4
AQT_CONFIG: "thirdparty/aqt_settings.ini"
strategy:
matrix:
os: [windows-2022]
# Build Debug because there is not a job for windows in lint.yml (which uses the Debug build type)
cmake_build_type: [Release, Debug]
fail-fast: false
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
- name: event name
run: |
echo "github.event_name: ${{ github.event_name }}"
- uses: TheMrMilchmann/setup-msvc-dev@v4
with:
arch: 'x64'
# CMake version in windows-2022 runner-image is 3.31.6, so we install CMake>=4.0.1 from github marketplace.
# Reference: https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md
- name: install CMake>4.0.1
uses: lukka/get-cmake@latest
- name: install qt
uses: jurplel/install-qt-action@v4
with:
version: '6.8.1'
host: 'windows'
target: 'desktop'
arch: 'win64_msvc2022_64'
modules: 'qt3d'
cache: true
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Cache vcpkg (install artifacts)
uses: actions/cache@v4
with:
path: |
C:\vcpkg\installed
C:\vcpkg\downloads
C:\vcpkg\buildtrees
C:\vcpkg\packages
key: vcpkg-${{ runner.os }}-openblas-lapack
restore-keys: vcpkg-${{ runner.os }}-
- name: install BLAS and LAPACK
run: |
echo "::group::install BLAS and LAPACK"
vcpkg install openblas:x64-windows lapack:x64-windows
$vcpkg_bin_path = @(
"C:\vcpkg\installed\x64-windows\bin",
"C:\vcpkg\installed\x64-windows\debug\bin"
) -join ";"
echo "$vcpkg_bin_path" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "::endgroup::"
- name: dependency by pip
run: |
echo "::group::dependency by pip"
pip3 install -U numpy matplotlib pytest jsonschema flake8 pybind11 pyside6==$(qmake -query QT_VERSION)
# Add PySide6 and Shiboken6 path into system path, that allow exe file can find
# dll during runtime
# If user needs to modified system path in github actions container
# user should use GITHUB_PATH
# ref: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path
# But the way of update GITHUB_PATH in github action document does not work, there is a other way to update it.
# ref: https://stackoverflow.com/questions/60169752/how-to-update-the-path-in-a-github-action-workflow-file-for-a-windows-latest-hos
$pyside6_path = $(python3 -c "import sys, os, PySide6; sys.stdout.write(os.path.dirname(PySide6.__file__))")
$shiboken6_path = $(python3 -c "import sys, os, shiboken6; sys.stdout.write(os.path.dirname(shiboken6.__file__))")
echo "$pyside6_path;$shiboken6_path" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "::endgroup::"
- name: show dependency
run: |
echo "::group::show dependency"
Get-Command cl
Get-Command cmake
Get-Command python3
Get-Command pip3
python3 -c 'import numpy as np; print("np.__version__:", np.__version__, np.get_include())'
python3 -c "import pybind11 ; print('pybind11.__version__:', pybind11.__version__)"
pybind11-config --cmakedir
Get-Command pytest
Get-Command clang-tidy
Get-Command flake8
echo "::endgroup::"
- name: cmake ALL_BUILD
run: |
echo "::group::cmake ALL_BUILD"
cmake `
-DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} `
-DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" `
-DVCPKG_TARGET_TRIPLET="x64-windows" `
-Dpybind11_DIR="$(pybind11-config --cmakedir)" `
-S${{ github.workspace }} `
-B${{ github.workspace }}/build
cmake --build ${{ github.workspace }}/build `
--config ${{ matrix.cmake_build_type }} `
--target ALL_BUILD
echo "::endgroup::"
- name: cmake run_gtest
run: |
echo "::group::cmake run_gtest"
cmake --build ${{ github.workspace }}/build `
--config ${{ matrix.cmake_build_type }} `
--target run_gtest
echo "::endgroup::"
- name: cmake run_pilot_pytest
run: |
echo "::group::cmake run_pilot_pytest"
cmake --build ${{ github.workspace }}/build `
--config ${{ matrix.cmake_build_type }} `
--target run_pilot_pytest
echo "::endgroup::"
- name: generate portable
if: ${{ matrix.cmake_build_type == 'Release' }}
run: |
echo "::group::generate portable"
# Get the Python version installed and extract the major+minor version components
$py_ver=$(python3 -V | awk '{print $2}')
$py_main_ver=$(echo $py_ver | awk -F. '{print $1$2}')
$destination=".\solvcon-pilot-win64\solvcon-pilot-win64"
$py_exec="$destination\python.exe"
# Create the destination directory
New-Item -ItemType Directory -Path $destination
# Download and extract the Python embeddable package
$pyembed_url="https://www.python.org/ftp/python/$py_ver/python-$py_ver-embed-amd64.zip"
$pyembed_dl="python-$py_ver-embed-amd64.zip"
Invoke-WebRequest -Uri $pyembed_url -OutFile $pyembed_dl
Expand-Archive -Path $pyembed_dl -DestinationPath $destination
# Patch the .pth file to enable 'site' package (required for using pip)
$pth_file="$destination\python$py_main_ver._pth"
(Get-Content $pth_file) -replace '#import site', 'import site' | Set-Content $pth_file
# Download and setup pip installation script
$get_pip_url="https://bootstrap.pypa.io/get-pip.py"
$get_pip_script="$destination\get-pip.py"
Invoke-WebRequest -Uri $get_pip_url -OutFile $get_pip_script
& $py_exec $get_pip_script
# Install necessary packages for the pilot
$qt_ver=$(qmake -query QT_VERSION)
& $py_exec -m pip install numpy matplotlib PySide6==$qt_ver shiboken6-generator==$qt_ver
# Copy pyside6 and shiboken6 DLLs alongside the pilot executable
$pyside6_path=$(& $py_exec -c "import sys, os, PySide6; sys.stdout.write(os.path.dirname(PySide6.__file__))")
$shiboken6_path=$(& $py_exec -c "import sys, os, shiboken6; sys.stdout.write(os.path.dirname(shiboken6.__file__))")
copy "$pyside6_path\pyside6.abi3.dll" $destination
copy "$shiboken6_path\shiboken6.abi3.dll" $destination
# Remove redundant Qt DLLs from PySide6
Remove-Item -Path $pyside6_path\Qt*.dll
# Configure and build the pilot
cmake -Dpybind11_DIR="$(pybind11-config --cmakedir)" -S . -B build
cmake --build build --config Release --target pilot
# Deploy the Qt environment for the pilot executable and copy necessary files
Copy-Item -Path ".\build\cpp\binary\pilot\Release\pilot.exe" -Destination $destination
windeployqt --release "$destination\pilot.exe"
Copy-Item -Path ".\solvcon" -Destination $destination -Recurse
# Also include potential thirdparty
Copy-Item -Path ".\thirdparty" -Destination $destination -Recurse
echo "::endgroup::"
- name: archive portable artifacts
if: ${{ matrix.cmake_build_type == 'Release' }}
uses: actions/upload-artifact@v7
with:
name: solvcon-pilot-win64
path: solvcon-pilot-win64/
send_email_on_failure:
needs: [standalone_buffer, build, build_windows]
# Run if any of the dependencies failed in master branch
if: ${{ always() && contains(needs.*.result, 'failure') && github.ref_name == 'master' && github.event.repository.fork == false }}
uses: ./.github/workflows/send_email_on_fail.yml
with:
job_results: |
- standalone_buffer: ${{ needs.standalone_buffer.result }}
- build: ${{ needs.build.result }}
- build_windows: ${{ needs.build_windows.result }}
secrets:
EMAIL_USERNAME: ${{ secrets.EMAIL_USERNAME }}
EMAIL_PASSWORD: ${{ secrets.EMAIL_PASSWORD }}