From dfea2b41d7a78ca31b25f59608980c85648bfdcc Mon Sep 17 00:00:00 2001 From: Pedro Paulo de Amorim Date: Wed, 14 Oct 2020 18:34:59 +0100 Subject: [PATCH 1/2] Fix CI --- .github/workflows/swift-test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/swift-test.yml b/.github/workflows/swift-test.yml index 4250b335..37e7876d 100644 --- a/.github/workflows/swift-test.yml +++ b/.github/workflows/swift-test.yml @@ -19,7 +19,13 @@ jobs: steps: - uses: actions/checkout@v2 - name: Download and run MeiliSearch - run: brew update && brew install meilisearch + 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 & - name: Run tests From e4ee2b0de50163c5fa4cd450f98aa56cd199534a Mon Sep 17 00:00:00 2001 From: Pedro Paulo Amorim Date: Fri, 23 Oct 2020 13:06:48 +0100 Subject: [PATCH 2/2] Update .github/workflows/swift-test.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clémentine Urquizar --- .github/workflows/swift-test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/swift-test.yml b/.github/workflows/swift-test.yml index cede7c15..6d35eed8 100644 --- a/.github/workflows/swift-test.yml +++ b/.github/workflows/swift-test.yml @@ -20,6 +20,9 @@ jobs: - uses: actions/checkout@v2 - name: Download and run 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