c-kzg-4844/.github/workflows/csharp-bindings-build.yml

80 lines
2.5 KiB
YAML

name: C# bindings test and build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-ckzg:
runs-on: ${{ matrix.target.host }}
strategy:
matrix:
target:
- native: linux-x64
host: ubuntu-latest
- native: linux-arm64
host: ubuntu-latest
- native: osx-arm64
host: macos-latest
- native: osx-x64
host: macos-latest
- native: win-x64
host: windows-latest
steps:
- uses: ilammy/msvc-dev-cmd@v1
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build native library for ${{ matrix.target.native }}
run: cd bindings/csharp && make -B ckzg CSHARP_PLATFORM=${{ matrix.target.native }}
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ckzg-library-${{ matrix.target.native }}
path: bindings/csharp/Ckzg.Bindings/runtimes/${{ matrix.target.native }}/native
build-ckzg-dotnet:
runs-on: ubuntu-latest
needs: build-ckzg
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: ckzg-library-linux-x64
path: bindings/csharp/Ckzg.Bindings/runtimes/linux-x64/native
- uses: actions/download-artifact@v3
with:
name: ckzg-library-osx-x64
path: bindings/csharp/Ckzg.Bindings/runtimes/osx-x64/native
- uses: actions/download-artifact@v3
with:
name: ckzg-library-win-x64
path: bindings/csharp/Ckzg.Bindings/runtimes/win-x64/native
- uses: actions/download-artifact@v3
with:
name: ckzg-library-osx-arm64
path: bindings/csharp/Ckzg.Bindings/runtimes/osx-arm64/native
- uses: actions/download-artifact@v3
with:
name: ckzg-library-linux-arm64
path: bindings/csharp/Ckzg.Bindings/runtimes/linux-arm64/native
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: cd bindings/csharp && dotnet restore
- name: Test
run: cd bindings/csharp && dotnet test --configuration Release --no-restore
- name: Build
run: cd bindings/csharp && dotnet build -p:Version=0.1.1.${{github.run_number}} --configuration Release --no-restore
- name: Upload package
uses: actions/upload-artifact@v3
with:
name: Ckzg.Bindings
path: bindings/csharp/build/Ckzg.Bindings.*.nupkg