Skip to content

Commit

Permalink
Show mkmf.log when failed
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Dec 2, 2024
1 parent b152f5b commit 1323a4e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@ jobs:
- name: Experiment with a manual bundle install
run: bundle install
- name: Run test
run: rake # Attempting without 'bundle exec'
run: |
if rake; then # Attempting without 'bundle exec'
:
else
find . -type f -name mkmf.log -exec cat -n {} +
exit 1
fi
continue-on-error: ${{matrix.ruby == 'truffleruby-head'}}
- id: build
run: |
Expand Down

0 comments on commit 1323a4e

Please sign in to comment.