Skip to content

Fuse 4.4.0 reliability and indexing repair #63

Fuse 4.4.0 reliability and indexing repair

Fuse 4.4.0 reliability and indexing repair #63

Workflow file for this run

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"