Skip to content

Commit

Permalink
GitHub Actions: fix to use /opt/homebrew/lib on aarch64-apple-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
msakai committed May 22, 2024
1 parent de4329c commit 85409fe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ jobs:
- name: Install packages (macOS)
if: runner.os == 'macOS'
run: brew install msakai/tap/liblbfgsb
- name: Add /opt/homebrew/lib as extra library directory
if: runner.os == 'macOS' && runner.arch == 'ARM'
run: |
echo "extra-lib-dirs: [/opt/homebrew/lib]" >> ${{ matrix.stack_yaml }}
- name: Install packages (Windows)
if: runner.os == 'Windows'
Expand Down

0 comments on commit 85409fe

Please sign in to comment.