From c3879fd98a79c5dbf34f0550a2c0ae3eb3cb33e9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:20:32 +0000 Subject: [PATCH 1/2] Initial plan From d829fc54fc3ea79f4847de15b73ef378f96f97de Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:27:19 +0000 Subject: [PATCH 2/2] Remove matrix from build job and run only on ubuntu Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ced86943da..d7452231bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,14 +38,11 @@ jobs: build: name: Build Code and Recompile - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest permissions: contents: read - strategy: - matrix: - os: [ubuntu-latest, macos-latest] concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.job }}-${{ matrix.os }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.job }} cancel-in-progress: true steps: - name: Checkout code