Ignore objects with 'display' property set to False #56
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
| name: C/C++ CI | |
| on: [push, pull_request] | |
| jobs: | |
| Linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| cache: 'pip' | |
| - name: install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip3 install -r requirements.txt | |
| pip3 install pyinstaller | |
| - name: build standalone | |
| run: | |
| pyinstaller webmapper.spec | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: webmapper-ubuntu-standalone | |
| path: dist/webmapper | |
| MacOS: | |
| runs-on: macOS-14 | |
| env: | |
| CC: clang | |
| CXX: clang++ | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| cache: 'pip' | |
| - name: install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip3 install -r requirements.txt | |
| pip3 install pyinstaller | |
| - name: build standalone | |
| run: | |
| pyinstaller webmapper.spec | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: webmapper-macosx-standalone | |
| path: dist/webmapper | |
| Windows-Latest: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| cache: 'pip' | |
| - name: install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip3 install -r requirements.txt | |
| pip3 install pyinstaller | |
| - name: build standalone | |
| run: | |
| pyinstaller webmapper.spec | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: webmapper-win64-standalone | |
| path: dist/webmapper |