From 85c3f458feb4d2fe3864f69ead120bb0ec3d49a7 Mon Sep 17 00:00:00 2001 From: Navaneet Villodi <11260095+nauaneed@users.noreply.github.com> Date: Tue, 20 Aug 2024 14:29:14 +0530 Subject: [PATCH] ci(macos): use omp enabled homebrew-llvm-clang Ref - https://github.com/Rdatatable/data.table/wiki/Installation/370c4629742886190c08de5e199a8ca8d3d86b24 - https://github.com/actions/runner-images/blob/5c04ad10e394b07619bd68a62b3cd7665e7a3cb3/images/macos/macos-14-arm64-Readme.md --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 853420fc..ca814d22 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,6 +24,9 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Use llvm-clang on macOS + if: ${{ runner.os == 'macOS' }} + run: $(brew --prefix llvm@15)/bin/clang - name: Set up Python ${{ matrix.python-version }} uses: conda-incubator/setup-miniconda@v3 with: