Skip to content

Commit

Permalink
Merge #84
Browse files Browse the repository at this point in the history
84: Fix CI r=curquiza a=ppamorim

I don't see they fixing this issue, we are getting stuck due to this problem.

Fixes crash in CI reported here: actions/runner-images#1811

Crash happening in the PR #71.

Co-authored-by: Pedro Paulo de Amorim <pp.amorim@hotmail.com>
Co-authored-by: Pedro Paulo Amorim <pp.amorim@hotmail.com>
  • Loading branch information
bors[bot] and ppamorim authored Oct 23, 2020
2 parents b3aa517 + e4ee2b0 commit c7c35fb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/swift-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,16 @@ jobs:
- uses: actions/checkout@v2

- name: Download and run MeiliSearch
run: brew update && brew install meilisearch
# The 4 following lines should be a temporary fix
# See the related PR in meilisearch-swift: https://github.com/meilisearch/meilisearch-swift/pull/84
# See the releated issue in virtual-environements: https://github.com/actions/virtual-environments/issues/1811
run: |
brew uninstall openssl@1.0.2t
brew uninstall python@2.7.17
brew untap local/openssl
brew untap local/python2
brew update
brew install meilisearch
- name: Run MeiliSearch
run: meilisearch --no-analytics=true --master-key=masterKey &
Expand Down

0 comments on commit c7c35fb

Please sign in to comment.