Skip to content

Harden V3 native async operation lifecycle #56

Harden V3 native async operation lifecycle

Harden V3 native async operation lifecycle #56

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
name: Build and test
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Restore
run: dotnet restore DeltaLakeSharp.sln
- name: Test Rust V3 runtime
working-directory: src/DeltaLakeSharp.Server/v3
run: cargo test
- name: Build native runtime
working-directory: src/DeltaLakeSharp.Server/v3
run: cargo build --release
- name: Build solution
run: dotnet build DeltaLakeSharp.sln --configuration Release --no-restore /p:SkipRustBuild=true -m:1
- name: Build client example
run: dotnet build examples\DeltaLakeSharp.Client.Examples\DeltaLakeSharp.Client.Examples.csproj --configuration Release --no-restore /p:SkipRustBuild=true
- name: Run SDK non-integration tests
run: dotnet test tests\DeltaLakeSharp.Tests\DeltaLakeSharp.Tests.csproj --configuration Release --no-build --filter "TestCategory!=Integration"
- name: Run ADBC non-integration tests
run: dotnet test tests\DeltaLakeSharp.Adbc.Tests\DeltaLakeSharp.Adbc.Tests.csproj --configuration Release --no-build --filter "TestCategory!=Integration"
- name: Run compatibility tests
run: dotnet test tests\DeltaLakeSharp.Client.Compatibility.Tests\DeltaLakeSharp.Client.Compatibility.Tests.csproj --configuration Release --no-build --filter "TestCategory!=Integration"