Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update mac.yml #683

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ jobs:
steps:
- uses: actions/checkout@main

- name: macos fix
if: runner.os == 'Macos'
run: |
brew update
brew upgrade
brew install pkgconf
# work around https://github.com/actions/runner-images/issues/10984

- name: Deps
# git build-essential wget unzip aspcud m4 pkg-config libshp-dev libopenblas-dev liblapacke-dev
# homebrew in the workers comes pre-installed with the old pkg-config, which conflicts with the new pkgconf
run: |
brew unlink pkg-config
brew install pkgconf aspcud openblas
brew unlink pkgconf
brew link pkg-config
run: brew install aspcud openblas

- name: Use OCaml
uses: ocaml/setup-ocaml@v2
Expand Down
Loading