We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c18cc7 commit 23da66eCopy full SHA for 23da66e
.github/workflows/ci.yml
@@ -675,6 +675,14 @@ jobs:
675
CT_LOG_LEVEL_MAX="EXTRA"
676
EOF
677
678
+ # Reduce parallelism to work around the `kern.maxproc` issue when
679
+ # building x86-64 macOS toolchain
680
+ if [ "${{ matrix.host.name }}" == "macos-x86_64" ]; then
681
+ cat <<EOF >> .config
682
+ CT_PARALLEL_JOBS=$(($(nproc) / 2))
683
+ EOF
684
+ fi
685
+
686
# Set Canadian cross compilation configurations
687
if [ "${{ matrix.host.name }}" == "macos-x86_64" ]; then
688
# Building for macos-x86_64 on macos-aarch64
0 commit comments