Skip to content

Gate OSC debug logging behind --verbose flag #20

Gate OSC debug logging behind --verbose flag

Gate OSC debug logging behind --verbose flag #20

Workflow file for this run

# Build MapMap on Windows with Qt 6
name: Build on Windows
on:
push:
branches: [ dev, master ]
pull_request:
branches: [ dev, master ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Qt 6
uses: jurplel/install-qt-action@v4
with:
version: '6.8.0'
host: 'windows'
target: 'desktop'
arch: 'win64_mingw'
modules: 'qtmultimedia'
tools: 'tools_mingw1310'
- name: Configure with qmake
run: qmake mapmap.pro CONFIG+=release
- name: Build
run: mingw32-make -j4
- name: Build and run tests
run: |
cd tests/
qmake6 tests.pro
mingw32-make -j4
mingw32-make check
env:
QT_QPA_PLATFORM: offscreen