Skip to content

Commit c63740b

Browse files
committed
chore: Always 'Generate Wrappers' for all versions
The CI should always generate new wrappers instead of using the pre-generated examples.
1 parent f173927 commit c63740b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,14 +256,15 @@ jobs:
256256
make check TESTARGS="-platform offscreen"
257257
258258
- name: Generate Wrappers
259-
if: ${{ contains(matrix.configuration, 'release') }}
260259
run: |
260+
# workaround to allow to find the Qt include dirs for installed standard qt packages
261+
mkdir /usr/include/qt5ln; ln -s /usr/include/qt5 /usr/include/qt5ln/include
262+
export QTDIR=/usr/include/qt5ln
261263
cd generator
262264
UBSAN_OPTIONS="halt_on_error=1" ASAN_OPTIONS="detect_leaks=0:detect_stack_use_after_return=1:fast_unwind_on_malloc=0" \
263265
./pythonqt_generator
264266
265267
- name: Upload Wrappers
266-
if: ${{ contains(matrix.configuration, 'release') }}
267268
uses: actions/upload-artifact@v4
268269
with:
269270
name: wrappers_macos${{ steps.versions.outputs.MACOS_VERSION_SHORT }}_qt${{ steps.versions.outputs.QT_VERSION_SHORT }}

0 commit comments

Comments
 (0)