ENH: Add complete pole figure generation #23
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
| name: windows | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| - master | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| jobs: | |
| build: | |
| env: | |
| VCPKG_BINARY_SOURCES: 'clear;nuget,GitHub,readwrite' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-2022 | |
| toolset: | |
| - v143 | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Add C++ Problem Matcher | |
| uses: ammaraskar/msvc-problem-matcher@0.2.0 | |
| - name: Setup Build Environment | |
| uses: ilammy/msvc-dev-cmd@v1.12.1 | |
| with: | |
| vsversion: 2022 | |
| - name: Setup NuGet Credentials | |
| shell: bash | |
| run: | | |
| `vcpkg fetch nuget | tail -n 1` \ | |
| sources add \ | |
| -source "https://nuget.pkg.github.com/BlueQuartzSoftware/index.json" \ | |
| -storepasswordincleartext \ | |
| -name "GitHub" \ | |
| -username "BlueQuartzSoftware" \ | |
| -password "${{secrets.GITHUB_TOKEN}}" | |
| `vcpkg fetch nuget | tail -n 1` \ | |
| setapikey "${{secrets.GITHUB_TOKEN}}" \ | |
| -source "https://nuget.pkg.github.com/BlueQuartzSoftware/index.json" | |
| - name: Configure | |
| run: | | |
| cmake --preset ci-windows-${{matrix.toolset}} ${{github.workspace}} -T ${{matrix.toolset}} | |
| - name: Build | |
| run: | | |
| cmake --build --preset ci-windows-${{matrix.toolset}} | |
| - name: Test | |
| run: | | |
| ctest --preset ci-windows-${{matrix.toolset}} |