Skip to content

Commit

Permalink
fix: add readelf to PATH (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Jan 5, 2024
1 parent 3f21d92 commit be89a10
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,11 @@ jobs:
- name: dump build log
if: always()
run: cat build-iguana/meson-logs/meson-log.txt
- run: brew install binutils
- name: brew install binutils
if: ${{ inputs.runner == 'macos-latest' }}
run: |
brew install binutils
echo PATH="/usr/local/opt/binutils/bin:$PATH" >> $GITHUB_ENV
- name: readelf iguana examples
if: ${{ matrix.binding == 'cpp' }}
run: |
Expand Down

0 comments on commit be89a10

Please sign in to comment.