Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/OpenNMT/CTranslate2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Klein <guillaumekln@users.noreply.github.com>2021-04-12 18:54:51 +0300
committerGitHub <noreply@github.com>2021-04-12 18:54:51 +0300
commit62f01abcf40281f5a7a55b36d9e8fa5109f1db78 (patch)
tree1c8f67884ed81d8d3c92dfa7f15d6d7f66b9e4a9 /.github
parent554ed1a2349f07e77cbeb13de09913a755ab97d8 (diff)
Temporary fix macOS jobs (#447)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index aa6577ca..01689bff 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -60,7 +60,9 @@ jobs:
- name: Install libomp
if: startsWith(matrix.os, 'macos')
- run: brew install libomp
+ run: |
+ brew update
+ brew install libomp
- name: Configure with MKL
if: startsWith(matrix.os, 'ubuntu') && matrix.backend == 'mkl'