Skip to content

Commit

Permalink
Fix ci on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Jun 14, 2023
1 parent 178c542 commit 395c022
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,17 @@ jobs:
steps:
- name: Set-up repository
uses: actions/checkout@v3

- name: Fix runner baseline
run: |
# https://github.com/actions/runner-images/pull/7710
for package in go python@3.11; do
if brew info "$package" | grep -q ^/; then
brew unlink "$package"
brew link --overwrite "$package"
fi
done
# NOTE: CI can't execute end2end tests because there is no way to run
# Memgraph on CI MacOS machines.
- name: Install openssl
Expand Down

0 comments on commit 395c022

Please sign in to comment.