Update contributors #13
Workflow file for this run
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 |