Move messageHandler out of globalOptions #11
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
# vim: sw=2 | |
name: Test | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
ubuntu-qt5: | |
name: Qt 5.15.2 / Ubuntu 22.04 | |
runs-on: ubuntu-22.04 | |
env: | |
CFLAGS: -fsanitize=address,undefined | |
CXXFLAGS: -fsanitize=address,undefined | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup CMake | |
uses: ./.github/actions/cmake | |
- name: Build and test | |
uses: ./.github/actions/build-and-test | |
ubuntu-qt6: | |
name: Qt 6.5.0 / Ubuntu 22.04 | |
runs-on: ubuntu-22.04 | |
env: | |
CFLAGS: -fsanitize=address,undefined | |
CXXFLAGS: -fsanitize=address,undefined | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup CMake | |
uses: ./.github/actions/cmake | |
- name: Build and test | |
uses: ./.github/actions/build-and-test | |
windows: | |
name: Qt 6.5.0 / Windows | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup CMake | |
uses: ./.github/actions/cmake | |
with: | |
additional_cmake_args: | | |
-DCMAKE_RUNTIME_OUTPUT_DIRECTORY='${{github.workspace}}/build/bin' \ | |
-DCMAKE_LIBRARY_OUTPUT_DIRECTORY='${{github.workspace}}/build/bin' | |
- name: Build and test | |
uses: ./.github/actions/build-and-test |