Feature/showcase window #69
Workflow file for this run
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: Linux | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
branches: | |
- master | |
- dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out | |
uses: actions/checkout@v4 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
aqtversion: "==3.1.*" | |
version: "6.8.0" | |
host: linux | |
target: desktop | |
arch: linux_gcc_64 | |
- name: Configure CMake | |
run: cmake --preset linux | |
- name: Build the library. | |
run: cmake --build --preset linux | |
- name: Build the Sandbox app. | |
run: cmake --build --preset linux-sandbox |