-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
020038e
commit 91714aa
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,6 +104,17 @@ 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 | ||
cargo install --force [email protected] | ||
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' }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,6 +104,17 @@ jobs: | |
echo "RUBY_GC_LIBRARY=librubygc.${{ matrix.gc_name }}.so" >> $GITHUB_ENV | ||
make shared-gc SHARED_GC=${{ matrix.gc_name }} MMTK_BUILD=${{ matrix.build }} | ||
- name: Verify MMTk bindgen | ||
run: | | ||
cd ../src/gc/mmtk | ||
cargo install --force [email protected] | ||
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: $SETARCH make | ||
|
||
- run: | | ||
|