Skip to content

Commit 72c6e0c

Browse files
committed
disable parallel on MacOS too, see Sereal/Sereal#300
1 parent 0cd27e0 commit 72c6e0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
target-setup-perl: true
6464
perl-version: ${{ matrix.perl-version }}
6565
# Sereal::Encoder can not build in parallel on Windows
66-
build-enable-parallel: ${{ ! startsWith(matrix.os, 'windows-') }}
66+
build-enable-parallel: ${{ !startsWith(matrix.os,'windows-') && !startsWith(matrix.os,'macos-') }}
6767
- name: 'ci-dist: target-all after install-dist-perl-deps'
6868
uses: PDLPorters/devops/github-actions/ci-dist@master
6969
with:
@@ -72,7 +72,7 @@ jobs:
7272
target-install-dist-perl-deps: true
7373
target-test-release-testing: true
7474
target-test: true
75-
build-enable-parallel: ${{ ! startsWith(matrix.os, 'windows-') }}
75+
build-enable-parallel: ${{ !startsWith(matrix.os,'windows-') && !startsWith(matrix.os,'macos-') }}
7676
test-enable-release-testing: ${{ matrix.release-test }}
7777
test-enable-coverage: ${{ matrix.coverage }}
7878
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)