Add embedded MCP server exposing MapMap control over local HTTP #35
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 Ubuntu with all dependencies | |
| name: Build on Ubuntu | |
| on: | |
| push: | |
| branches: [ dev, master ] | |
| pull_request: | |
| branches: [ dev, master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| libqt6opengl6-dev \ | |
| libqt6openglwidgets6 \ | |
| pkg-config \ | |
| qmake6 \ | |
| qt6-base-dev \ | |
| qt6-multimedia-dev \ | |
| qt6-tools-dev | |
| - name: Configure with qmake | |
| run: qmake6 mapmap.pro | |
| - name: Build | |
| run: make -j$(nproc) | |
| - name: Build and run tests | |
| run: | | |
| cd tests/ | |
| qmake6 tests.pro | |
| make -j$(nproc) | |
| QT_QPA_PLATFORM=offscreen make check |