Merge pull request #3241 from fwesselm/stallFindLurkingBounds #6243
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: test-csharp-win | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| fast_build_release: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{github.workspace}}/build | |
| - name: Configure CMake | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake $GITHUB_WORKSPACE -DCSHARP=ON | |
| - name: Build | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake --build . --config Release --parallel | |
| - name: Test | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| ls | |
| ./Release/bin/csharpexample.exe | |
| fast_build_debug: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{github.workspace}}/build | |
| - name: Configure CMake | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake $GITHUB_WORKSPACE -DCSHARP=ON | |
| - name: Build | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake --build . --config Debug --parallel | |
| - name: Test | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| ls | |
| ./Debug/bin/csharpexample.exe |