This repository was archived by the owner on Oct 10, 2025. It is now read-only.
Update README with library limitations and disclaimer #107
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: Windows Build | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| # Automatically cancel any previous workflow on new push. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| name: Build and Test on Windows | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| pip install meson ninja | |
| shell: pwsh | |
| - name: Prepare MSVC | |
| uses: bus1/cabuild/action/msdevshell@v1 | |
| with: | |
| architecture: x64 | |
| - name: Configure with MSVC | |
| run: | | |
| meson setup build | |
| shell: pwsh | |
| - name: Build | |
| run: | | |
| meson compile -C build | |
| - name: Test | |
| run: | | |
| ninja -C build test | |
| - name: Upload test logs if failure | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: test-logs-windows | |
| path: build/meson-logs/testlog.txt |