No qcaught function in Qt6.2 #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
env: | |
# Use docker.io for Docker Hub if empty | |
REGISTRY: ghcr.io | |
MANYLINUX_TAG: "2022-10-25-fbea779" | |
# github.repository as <account>/<repo> | |
IMAGE_NAME: ${{ github.repository }} | |
PYTHON_VERSION: "3.7" | |
PYTHON_SHORT_VERSION: "cp37-cp37m" | |
PYTHON_WHEEL_VERSION: "cp37-abi3" | |
PYTHON_FULL_VERSION: "3.7.13" | |
QT_VERSION_MAJOR: "5" | |
QT_VERSION_MINOR: "15" | |
QT_VERSION_PATCH: "2" | |
QT_VERSION: "5.15" | |
QT_FULL_VERSION: "5.15.2" | |
PYSIDE_VERSION: "2" | |
LLVM_VERSION: "14.0.6" | |
GCC_VERSION: "10.1.0" | |
jobs: | |
build-VS-2019: | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
configuration: [Release] | |
platform: [x64] | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: "Installing vcpkg (windows)" | |
run: | | |
cd .. | |
git clone https://github.com/Microsoft/vcpkg.git | |
cd vcpkg | |
.\bootstrap-vcpkg.bat | |
.\vcpkg.exe update | |
.\vcpkg.exe install boost:x64-windows qt:x64-windows qwt:x64-windows | |
# - name: Install Qt | |
# uses: jurplel/install-qt-action@v3 | |
# with: | |
# version: '6.5.2' | |
# - name: Install boost | |
# uses: MarkusJx/[email protected] | |
# id: install-boost | |
# with: | |
# boost_version: 1.84.0 | |
# # OPTIONAL: Specify a custon install location | |
# # boost_install_dir: C:\some_directory | |
# # OPTIONAL: Specify a platform version | |
# platform_version: 2019 | |
# # OPTIONAL: Specify a toolset | |
# toolset: msvc | |
- name: Running cmake (windows) | |
run: | | |
cd ${{ github.workspace }} | |
ls | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/../vcpkg/scripts/buildsystems/vcpkg.cmake | |
- name: Build Solution (windows) | |
run: | | |
cd build | |
MSBuild.exe CMakeHelloWorld.sln |