@@ -212,7 +212,7 @@ jobs:
212212 VERBOSE=1 USE_CLANG_TIDY=OFF \
213213 BUILD_QT=OFF \
214214 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
215- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON"
215+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON -DMODMESH_USE_PYSIDE=ON "
216216 make buildext VERBOSE=1
217217
218218 - name : make pytest BUILD_QT=OFF
@@ -227,7 +227,7 @@ jobs:
227227 VERBOSE=1 USE_CLANG_TIDY=OFF \
228228 BUILD_QT=ON \
229229 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
230- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3)"
230+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DMODMESH_USE_PYSIDE=ON "
231231 make buildext VERBOSE=1
232232
233233 # build with pytest helper binding for testing
@@ -238,7 +238,7 @@ jobs:
238238 VERBOSE=1 USE_CLANG_TIDY=OFF \
239239 BUILD_QT=ON \
240240 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
241- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON"
241+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON -DMODMESH_USE_PYSIDE=ON "
242242 make buildext VERBOSE=1
243243
244244 - name : make pytest BUILD_QT=ON USE_PYTEST_HELPER_BINDING=ON
@@ -257,7 +257,7 @@ jobs:
257257 VERBOSE=1 USE_CLANG_TIDY=OFF \
258258 BUILD_QT=ON \
259259 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
260- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON"
260+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON -DMODMESH_USE_PYSIDE=ON "
261261
262262 - name : make run_pilot_pytest
263263 run : |
@@ -273,7 +273,7 @@ jobs:
273273 VERBOSE=1 USE_CLANG_TIDY=OFF \
274274 BUILD_QT=OFF \
275275 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
276- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_SANITIZER=OFF -DUSE_PYTEST_HELPER_BINDING=ON"
276+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_SANITIZER=OFF -DUSE_PYTEST_HELPER_BINDING=ON -DMODMESH_USE_PYSIDE=ON "
277277 make buildext VERBOSE=1
278278 make pytest VERBOSE=1
279279
@@ -394,7 +394,7 @@ jobs:
394394 VERBOSE=1 USE_CLANG_TIDY=OFF \
395395 BUILD_QT=OFF \
396396 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
397- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON"
397+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON -DMODMESH_USE_PYSIDE=ON "
398398 make buildext VERBOSE=1
399399
400400 - name : make pytest BUILD_QT=OFF
@@ -416,7 +416,7 @@ jobs:
416416 VERBOSE=1 USE_CLANG_TIDY=OFF \
417417 BUILD_QT=ON \
418418 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
419- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3)"
419+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DMODMESH_USE_PYSIDE=ON "
420420 make buildext VERBOSE=1
421421
422422 # build with pytest helper binding for testing
@@ -427,7 +427,7 @@ jobs:
427427 VERBOSE=1 USE_CLANG_TIDY=OFF \
428428 BUILD_QT=ON \
429429 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
430- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON"
430+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON -DMODMESH_USE_PYSIDE=ON "
431431 make buildext VERBOSE=1
432432
433433 - name : make pytest BUILD_QT=ON USE_PYTEST_HELPER_BINDING=ON
@@ -455,7 +455,7 @@ jobs:
455455 VERBOSE=1 USE_CLANG_TIDY=OFF \
456456 BUILD_QT=ON \
457457 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
458- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON"
458+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_PYTEST_HELPER_BINDING=ON -DMODMESH_USE_PYSIDE=ON "
459459
460460 - name : make run_pilot_pytest
461461 run : |
@@ -470,7 +470,7 @@ jobs:
470470 VERBOSE=1 USE_CLANG_TIDY=OFF \
471471 BUILD_QT=OFF \
472472 CMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
473- CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_SANITIZER=OFF -DUSE_PYTEST_HELPER_BINDING=ON"
473+ CMAKE_ARGS="-DPYTHON_EXECUTABLE=$(which python3) -DUSE_SANITIZER=OFF -DUSE_PYTEST_HELPER_BINDING=ON -DMODMESH_USE_PYSIDE=ON "
474474 make buildext VERBOSE=1
475475 make pytest VERBOSE=1
476476
@@ -554,6 +554,7 @@ jobs:
554554 cmake `
555555 -DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} `
556556 -Dpybind11_DIR="$(pybind11-config --cmakedir)" `
557+ -DMODMESH_USE_PYSIDE=ON `
557558 -S${{ github.workspace }} `
558559 -B${{ github.workspace }}/build
559560 cmake --build ${{ github.workspace }}/build `
@@ -567,6 +568,7 @@ jobs:
567568 -DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} `
568569 -Dpybind11_DIR="$(pybind11-config --cmakedir)" `
569570 -DUSE_PYTEST_HELPER_BINDING=ON `
571+ -DMODMESH_USE_PYSIDE=ON `
570572 -S${{ github.workspace }} `
571573 -B${{ github.workspace }}/build
572574 cmake --build ${{ github.workspace }}/build `
@@ -626,7 +628,7 @@ jobs:
626628 Remove-Item -Path $pyside6_path\Qt*.dll
627629
628630 # Configure and build the pilot
629- cmake -Dpybind11_DIR="$(pybind11-config --cmakedir)" -S . -B build
631+ cmake -Dpybind11_DIR="$(pybind11-config --cmakedir)" -DMODMESH_USE_PYSIDE=ON - S . -B build
630632 cmake --build build --config Release --target pilot
631633
632634 # Deploy the Qt environment for the pilot executable and copy necessary files
0 commit comments