This repository was archived by the owner on Sep 16, 2025. It is now read-only.
Update PDB #207
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: Update PDB | |
| on: | |
| workflow_run: | |
| workflows: Maintenance | |
| types: completed | |
| workflow_dispatch: | |
| concurrency: | |
| group: pdb | |
| cancel-in-progress: true | |
| jobs: | |
| update-pdb: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Get CMake | |
| uses: lukka/get-cmake@latest | |
| - name: Setup MSVC prompt | |
| uses: TheMrMilchmann/setup-msvc-dev@v3 | |
| with: | |
| arch: x64 | |
| toolset: 14.40 | |
| - name: Build | |
| run: | | |
| ${{ github.workspace }}/scripts/build-debug-msvc-test.bat | |
| - name: Find PDB | |
| run: | | |
| $pdb = Get-ChildItem -Path "${{ github.workspace }}" -Filter "CommonLibSF-test.pdb" -Recurse -ErrorAction SilentlyContinue -Force | |
| "PDB_PATH=$pdb" >> $env:GITHUB_ENV | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: CommonLibSF.pdb | |
| path: ${{ env.PDB_PATH }} |