Correct qml modules installation in Ubuntu22.04 #5
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: | |
samples-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 | |
git checkout --force 2020.01 | |
.\bootstrap-vcpkg.bat | |
.\vcpkg.exe install cppzmq:x64-windows | |
- 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 | |