Skip to content

Commit

Permalink
Revert "Remove restriction on the number of jobs for the Linux Arm64 …
Browse files Browse the repository at this point in the history
…workflow" (#1000)

We've been observing CI runs where the compiler gets killed `c++: fatal
error: Killed signal terminated program cc1plus`. I suspect this is due
to the runner running out of memory, so we reinstate the restriction on
the number of parallel runners for Linux arm builds.

Reverts #992
  • Loading branch information
dime10 authored Aug 6, 2024
1 parent 95cfb4d commit 45e31c0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-wheel-linux-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ jobs:
needs: [constants, build-dependencies]
strategy:
fail-fast: false
max-parallel: 2
matrix:
python_version: [{official: "3.9", subversion: "19", package: "python39", alternative: "39"},
{official: "3.10", subversion: "14", package: "python3.10", alternative: "310"},
Expand Down Expand Up @@ -270,6 +271,7 @@ jobs:
needs: [constants, catalyst-linux-wheels-arm64]
strategy:
fail-fast: false
max-parallel: 2
matrix:
python_version: [{official: "3.9", subversion: "19", package: "python39"},
{official: "3.10", subversion: "14", package: "python3.10"},
Expand Down

0 comments on commit 45e31c0

Please sign in to comment.