Gate OSC debug logging behind --verbose flag #20
This file contains hidden or 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
| # 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 | |