Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
eightbitraptor committed Sep 25, 2024
1 parent 57316e2 commit 62a682b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
shared_gc: true
shared_gc_dir: '/home/runner/ruby_gc'
configure: '--with-shared-gc=/home/runner/ruby_gc'
gc_name: 'default'
- test_task: check
configure: '--with-shared-gc=/home/runner/ruby_gc'
gc_name: 'mmtk'
- test_task: test-bundler-parallel
timeout: 50
- test_task: test-bundled-gems
Expand Down Expand Up @@ -100,9 +104,9 @@ jobs:

- name: Build shared GC
run: >
echo "RUBY_GC_LIBRARY=librubygc.default.so" >> $GITHUB_ENV &&
echo "RUBY_GC_LIBRARY=librubygc.${{ matrix.gc_name }}.so" >> $GITHUB_ENV &&
mkdir ${{ matrix.shared_gc_dir }} &&
make shared-gc SHARED_GC=default
make shared-gc SHARED_GC=${{ matrix.gc_name }}
if: ${{ matrix.shared_gc }}

- run: $SETARCH make
Expand Down

0 comments on commit 62a682b

Please sign in to comment.