Skip to content

Commit

Permalink
ci: linux/arm: reduce parallelism
Browse files Browse the repository at this point in the history
Git "app: build" step seems to be crashing with
OOM errors. Drop parallelism for that stage to 1x
to see if that helps.
  • Loading branch information
rcoup committed May 30, 2024
1 parent 80e5b8a commit 8be1b43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,14 @@ jobs:
image: quay.io/pypa/manylinux2014_x86_64
arch: amd64
arch_triplet: x64-linux
build_parallel: ""

- base: buildjet-4vcpu-ubuntu-2204-arm
label: centos7/arm64
image: quay.io/pypa/manylinux2014_aarch64
arch: arm64
arch_triplet: arm64-linux
build_parallel: 1

name: Linux ${{ matrix.os.arch }}
runs-on: ${{ matrix.os.base }}
Expand Down Expand Up @@ -396,7 +398,7 @@ jobs:
- name: "app: build"
shell: bash
run: |
cmake --build --preset=ci-linux --verbose --parallel
cmake --build --preset=ci-linux --verbose --parallel ${{ matrix.os.build_parallel }}
- name: "vendor: save archive"
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 8be1b43

Please sign in to comment.