Skip to content

Commit 8646bfa

Browse files
authored
Merge pull request #8338 from tautschnig/debug-macos-13
Avoid brew symlink conflict in macos-13
2 parents 0acd97d + 97e615f commit 8646bfa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: .github/workflows/pull-request-checks.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,10 @@ jobs:
592592
with:
593593
submodules: recursive
594594
- name: Fetch dependencies
595-
run: brew install maven flex bison parallel ccache z3
595+
run: |
596+
# maven is already installed and upgrading to a newer version yields
597+
# symlink conflicts as previously reported in https://github.com/actions/runner-images/issues/4020
598+
brew install flex bison parallel ccache z3
596599
- name: Confirm z3 solver is available and log the version installed
597600
run: z3 --version
598601
- name: Download cvc5 binary and make sure it can be deployed

0 commit comments

Comments
 (0)