Load plugins in AppImage #183
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
name: "Windows CI" | |
on: | |
push: | |
branches: | |
- "master" | |
- "blueprint" | |
- "features/*" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-latest] | |
qt: [6.4.2, 6.5] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: vicr123/libcontemporary/prepare-vars@actions | |
id: vars | |
with: | |
qtVersion: ${{ matrix.qt }} | |
- name: Install ninja | |
run: | | |
choco install ninja | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ steps.vars.outputs.qtVersion }} | |
arch: win64_msvc2019_64 | |
modules: addons.qtmultimedia addons.qtwebsockets qt5compat | |
cache: true | |
- name: Set up MSVC | |
uses: ilammy/[email protected] | |
with: | |
sdk: 10.0.22000.0 | |
- uses: vicr123/libcontemporary/build-project@actions | |
name: "Build QCoro" | |
with: | |
project: "danvratil/qcoro" | |
commitish: ${{ steps.vars.outputs.qcoroVersion }} | |
- uses: actions/checkout@v1 | |
with: | |
submodules: 'recursive' | |
- uses: vicr123/libcontemporary/build-project@actions | |
name: "Build project" | |
with: | |
project: "." |