Add a NuGet readme file for the next version #172
This file contains 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: | |
BUILD_DOTNET_VERSION: 6.0.x | |
BUILD_LINUX_TEST_TFM: net6.0 | |
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@v3 | |
with: | |
dotnet-version: ${{ env.BUILD_DOTNET_VERSION }} | |
- 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@v3 | |
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@v3 | |
with: | |
dotnet-version: ${{ env.BUILD_DOTNET_VERSION }} | |
- 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 ${{ env.BUILD_LINUX_TEST_TFM }} --no-restore src/Abc.Zebus.Tests.proj | |
- name: Test | |
run: dotnet test --configuration Release --framework ${{ env.BUILD_LINUX_TEST_TFM }} --no-build src/Abc.Zebus.Tests.proj |