Skip to content

Commit

Permalink
debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeyers314 committed Apr 30, 2024
1 parent de54a61 commit a0b8a43
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,17 @@ jobs:
# already installed, which is goofy. So || true means these always give
# non-error values. If there really is an error, we should notice later
# when trying to use whatever package failed to install.
#brew update || true
# brew update || true
brew install fftw wget || true
brew upgrade wget || true
brew link --overwrite fftw gcc wget || true
brew install eigen || true
brew link --overwrite eigen || true
- name: Install dependencies
env:
LIBRARY_PATH: /opt/homebrew/lib:$LIBRARY_PATH
LD_LIBRARY_PATH: /opt/homebrew/lib:$LD_LIBRARY_PATH
run: |
python -m pip install -U pip
Expand All @@ -94,7 +97,7 @@ jobs:
run: pip list

- name: Build batoid
run: CMAKE_VERBOSE_MAKEFILE=1 python setup.py develop
run: CMAKE_VERBOSE_MAKEFILE=1 pip install .

- name: Run unit tests
run: pytest --cov=batoid --cov-report=xml --cov-config tests/.coveragerc --skip_gha --durations=8 -ra
Expand Down

0 comments on commit a0b8a43

Please sign in to comment.