Fuse 4.4.0 reliability and indexing repair #63
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: CI SDK | |
| # RequiresSdk integration tests need a working .NET SDK and the bundled build-capture worker. | |
| # They are excluded from the default CI leg (Category!=RequiresSdk) for fast feedback. | |
| on: | |
| pull_request: | |
| branches: [main, master] | |
| push: | |
| branches: [main, master] | |
| jobs: | |
| sdk-tests: | |
| name: RequiresSdk tests (${{ matrix.rid }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: windows-latest | |
| rid: win-x64 | |
| - os: ubuntu-latest | |
| rid: linux-x64 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Install Linux publish prerequisites | |
| if: runner.os == 'Linux' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang zlib1g-dev | |
| - name: Restore | |
| run: dotnet restore Fuse.slnx | |
| - name: Build | |
| run: dotnet build Fuse.slnx --configuration Release --no-restore | |
| - name: Test RequiresSdk | |
| run: dotnet test Fuse.slnx --configuration Release --no-build --verbosity normal --filter "Category=RequiresSdk" |