Skip to content

Add roaring bitmap to data structures in storage #2485

Add roaring bitmap to data structures in storage

Add roaring bitmap to data structures in storage #2485

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 10.0.x
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -p:FeatureFlags=#DEBUG_WRITE
- name: Test
run: dotnet test ./tests/FlowtideDotNet.AcceptanceTests/FlowtideDotNet.AcceptanceTests.csproj --no-build --verbosity normal -p:ParallelizeTestCollections=false --framework net10.0
- name: Upload logs
if: always()
uses: actions/upload-artifact@v4
with:
name: debugwrites
path: ./tests/FlowtideDotNet.AcceptanceTests/bin/Debug/net10.0/debugwrite