Skip to content

Commit

Permalink
verify cairo installation
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-tb committed Apr 25, 2024
1 parent 6b4173a commit 513e60f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,15 @@ jobs:
- name: Setup Tools/Dependencies macOS
if: runner.os == 'macOS'
run: |
brew install aspell cairo
brew install aspell
# Add additional packages on 3.11: https://github.com/ethereum/execution-spec-tests/issues/274
if [ ${{ matrix.python }} == '3.11' ]; then brew install autoconf automake libtool; fi
- name: Verify Cairo Installation
if: runner.os == 'macOS'
run: |
brew list --versions cairo
find /usr/local -name libcairo.so.2
find /usr/local -name libcairo.2.dylib
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox (CPython)
Expand Down

0 comments on commit 513e60f

Please sign in to comment.