From bfc9fd026cb9fb4e9641d4bb3f82f0754ad25219 Mon Sep 17 00:00:00 2001 From: Felix MIL Date: Mon, 16 Dec 2024 22:04:00 +0100 Subject: [PATCH] parallelize builds --- .github/workflows/build-c#.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-c#.yaml b/.github/workflows/build-c#.yaml index 0eab9d03..715a930b 100644 --- a/.github/workflows/build-c#.yaml +++ b/.github/workflows/build-c#.yaml @@ -6,7 +6,6 @@ on: jobs: Linux-Build: - runs-on: ubuntu-22.04 env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} @@ -46,8 +45,8 @@ jobs: default_author: github_actions add: '*linux.so' + macOS-Build: - needs: Linux-Build runs-on: macos-latest env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} @@ -73,7 +72,6 @@ jobs: working-directory: ./shared run: make - - name: Test C# binaries run: | export R_HOME=/Library/Frameworks/R.framework/Resources @@ -88,8 +86,8 @@ jobs: default_author: github_actions add: '*mac.so' + Windows-Build: - needs: macOS-Build runs-on: windows-latest env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} @@ -111,7 +109,6 @@ jobs: with: use-public-rspm: true - - name: Install dependencies run: | nuget restore ./shared/packages.config -PackagesDirectory ./shared/packages