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 d61f0fa commit bedc8e4
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/remoteBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,18 +127,17 @@ jobs:
- name: Configure (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
echo $LD_LIBRARY_PATH
echo $PATH
/opt/homebrew/opt/llvm/lib/../bin/llvm-config --cxxflags --ldflags --libs --link-static
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 -DLIBCXXABI_USE_LLVM_UNWINDER=OFF -DCOMPILER_RT_USE_LLVM_UNWINDER=OFF
CXXFLAGS: -DBUILD_SHARED_LIBS=OFF -DLIBCXXABI_USE_LLVM_UNWINDER=OFF -DCOMPILER_RT_USE_LLVM_UNWINDER=OFF
CFLAGS: -static-libstdc++
CXXFLAGS: -static-libstdc++
LDFLAGS: -static-libstdc++
- name: Configure (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
Expand Down

0 comments on commit bedc8e4

Please sign in to comment.