Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/cruby-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
ruby tool/downloader.rb -d tool -e gnu config.guess config.sub
autoconf
./configure -C --disable-install-doc --with-parser=${{ matrix.parser }}
./configure -C --disable-install-doc --with-parser=${{ matrix.parser }} --with-gcc 'debugflags=-save-temps=obj -g'
make -j$(nproc)
working-directory: ruby/ruby
- name: make test-all
Expand All @@ -59,3 +59,11 @@ jobs:
EXCLUDES: ${{ matrix.parser == 'parse.y' && './test/.excludes-parsey' }}
run: make -j$(nproc) -s test-all
working-directory: ruby/ruby

- name: Update depend files
run: make fix-depends
working-directory: ruby/ruby
- name: Check depend is up-to-date
run: git diff --color --no-ext-diff --ignore-submodules --exit-code -- depend
working-directory: ruby/ruby