Skip to content

Commit

Permalink
Wrangling with GitHub Actions Runners and Homebrew
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacShelton committed Apr 30, 2024
1 parent 06c1a03 commit 2fb74ce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/remoteBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,17 @@ jobs:
- name: Configure (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
echo
cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DADEPT_LINK_LLVM_STATIC=On -B ${{github.workspace}}/build -G Ninja
env:
CC: /opt/homebrew/opt/llvm/bin/clang
LLVM_DIR: /opt/homebrew/opt/llvm
zstd_DIR: /usr/local/opt/zstd
LD_LIBRARY_PATH: ""
LIBCXXABI_USE_LLVM_UNWINDER: "OFF"
COMPILER_RT_USE_LLVM_UNWINDER: "OFF"
CFLAGS: -DBUILD_SHARED_LIBS=OFF LIBCXXABI_USE_LLVM_UNWINDER=OFF COMPILER_RT_USE_LLVM_UNWINDER=OFF
CXXFLAGS: -DBUILD_SHARED_LIBS=OFF LIBCXXABI_USE_LLVM_UNWINDER=OFF COMPILER_RT_USE_LLVM_UNWINDER=OFF
- name: Configure (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
Expand Down

0 comments on commit 2fb74ce

Please sign in to comment.