Zebus.Directory v3.14.3 #204
Workflow file for this run
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: Build | |
| on: [push, pull_request] | |
| env: | |
| DOTNET_NOLOGO: 1 | |
| jobs: | |
| windows: | |
| name: Windows | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - name: Restore | |
| run: dotnet restore src/Abc.Zebus.sln | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore src/Abc.Zebus.sln | |
| - name: Pack | |
| run: dotnet pack --configuration Release --no-restore src/Abc.Zebus.sln | |
| - name: Test | |
| run: dotnet test --configuration Release --no-build src/Abc.Zebus.sln | |
| - name: Upload NuGet | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: NuGet | |
| path: output/*.nupkg | |
| linux: | |
| name: Linux | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - name: Install RocksDb dependencies | |
| run: | | |
| sudo apt-get install libsnappy-dev | |
| sudo ln -s /lib/x86_64-linux-gnu/libdl.so.2 /lib/x86_64-linux-gnu/libdl.so | |
| - name: Restore | |
| run: dotnet restore src/Abc.Zebus.Tests.proj | |
| - name: Build | |
| run: dotnet build --configuration Release --framework net9.0 --no-restore src/Abc.Zebus.Tests.proj | |
| - name: Test | |
| run: dotnet test --configuration Release --framework net9.0 --no-build src/Abc.Zebus.Tests.proj |