From 9033dd44b757e8eb4441ca2c7cbfbf8c629dbb4c Mon Sep 17 00:00:00 2001 From: parithosh Date: Mon, 30 Dec 2024 16:22:21 +0100 Subject: [PATCH] reverting matrix --- .github/workflows/csharp-tests.yml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/.github/workflows/csharp-tests.yml b/.github/workflows/csharp-tests.yml index a2ae0c69..9b66ff0b 100644 --- a/.github/workflows/csharp-tests.yml +++ b/.github/workflows/csharp-tests.yml @@ -94,20 +94,28 @@ jobs: name: Build .NET wrapper runs-on: ubuntu-latest needs: test-ckzg-dotnet - strategy: - matrix: - runtime: - - linux-x64 - - osx-x64 - - win-x64 - - osx-arm64 - - linux-arm64 steps: - uses: actions/checkout@v4 - uses: actions/download-artifact@v4 with: pattern: ckzg-library-wrapper-* - path: bindings/csharp/Ckzg.Bindings/runtimes/${{ matrix.runtime }}/native + path: bindings/csharp/Ckzg.Bindings/runtimes/linux-x64/native + - uses: actions/download-artifact@v4 + with: + pattern: ckzg-library-wrapper-* + path: bindings/csharp/Ckzg.Bindings/runtimes/osx-x64/native + - uses: actions/download-artifact@v4 + with: + pattern: ckzg-library-wrapper-* + path: bindings/csharp/Ckzg.Bindings/runtimes/win-x64/native + - uses: actions/download-artifact@v4 + with: + pattern: ckzg-library-wrapper-* + path: bindings/csharp/Ckzg.Bindings/runtimes/osx-arm64/native + - uses: actions/download-artifact@v4 + with: + pattern: ckzg-library-wrapper-* + path: bindings/csharp/Ckzg.Bindings/runtimes/linux-arm64/native - name: Set up .NET uses: actions/setup-dotnet@v4 - name: Install dependencies