-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5ee7fe
commit 42dd41b
Showing
1 changed file
with
2 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,6 @@ jobs: | |
runs-on: [self-hosted, macOS] | ||
# Only run this action if we are pushing to master or the PR is labelled "macOS" | ||
if: ${{ (github.ref == 'refs/heads/master') || contains(github.event.pull_request.labels.*.name, 'macOS') }} | ||
defaults: | ||
run: | ||
shell: zsh | ||
env: | ||
FIREDRAKE_CI_TESTS: 1 # needed to symlink the checked out branch into the venv | ||
OMP_NUM_THREADS: 1 | ||
|
@@ -37,11 +34,11 @@ jobs: | |
cd .. | ||
rm -rf firedrake_venv | ||
- name: Install Python | ||
run: brew install [email protected] python-setuptools | ||
run: /opt/homebrew/bin/brew install [email protected] python-setuptools | ||
- name: Build Firedrake | ||
run: | | ||
cd .. | ||
"$(brew --prefix)/bin/python3.12" \ | ||
"$(/opt/homebrew/bin/brew --prefix)/bin/python3.12" \ | ||
firedrake/scripts/firedrake-install \ | ||
--venv-name firedrake_venv \ | ||
--disable-ssh \ | ||
|