Skip to content

Maybe aqt3.1.9?

Maybe aqt3.1.9? #12

name: CMake on a single platform
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
qml5-contextproperty:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.6'
host: 'linux'
target: 'desktop'
dir: '${{ github.workspace }}/example/'
install-deps: 'true'
modules: 'qtbase qtsvg qtdeclarative'
cache: 'true'
aqtversion: '3.1.9'
- name: Configure
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -S qml5-contextproperty/
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
# - name: Test
# working-directory: ${{github.workspace}}/build
# run: ctest -C ${{env.BUILD_TYPE}}
qml6-qmlelement:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.4'
host: 'linux'
target: 'desktop'
dir: '${{ github.workspace }}/example/'
install-deps: 'true'
modules: 'qtbase qtsvg qtdeclarative'
cache: 'true'
aqtversion: '3.1.9'
- name: Configure
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -S qml6-qmlelement/
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}