Skip to content

Commit

Permalink
add to macos
Browse files Browse the repository at this point in the history
  • Loading branch information
eightbitraptor committed Oct 11, 2024
1 parent fdc07d4 commit b274041
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/sharedgc-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ jobs:
echo "RUBY_GC_LIBRARY=librubygc.${{ matrix.gc_name }}.dylib" >> $GITHUB_ENV
make shared-gc SHARED_GC=${{ matrix.gc_name }} MMTK_BUILD=${{ matrix.build }}
- name: Verify MMTk bindgen
run: |
cd ../src/gc/mmtk
cbindgen --version
cargo install --force cbindgen@0.26.0
cbindgen --config cbindgen.toml --output ../mmtk.h
if read -n1 -d '' < <(git diff ../mmtk.h); then
git diff ../mmtk.h
exit 1
fi
if: ${{ matrix.gc_name == 'mmtk' }}

- run: make prepare-gems
if: ${{ matrix.test_task == 'test-bundled-gems' }}

Expand Down

0 comments on commit b274041

Please sign in to comment.