Skip to content

Commit

Permalink
Fixes to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
peterzhu2118 committed Oct 17, 2024
1 parent d52780a commit 982a10e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/modgc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
- name: default
- name: mmtk
mmtk_plan: MarkSweep
mmtk_cargo_build_flags: --release
mmtk_build: release
- name: mmtk
mmtk_plan: MarkSweep
mmtk_cargo_build_flags:
mmtk_build: debug
os: [macos-latest, ubuntu-latest]
include:
- test_task: check
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Build MMTK Ruby lib
run: |
cd ../src/gc/mmtk
cargo build ${{ matrix.gc.mmtk_cargo_build_flags }}
cargo build ${{ matrix.gc.mmtk_build != 'debug' && format('--{0}', matrix.gc.mmtk_build) || format('') }}
echo "RUST_LOG=" >> $GITHUB_ENV
echo "MMTK_PLAN=${{ matrix.gc.mmtk_plan }}" >> $GITHUB_ENV
echo "EXCLUDES=../src/test/.excludes-mmtk" >> $GITHUB_ENV
Expand All @@ -127,7 +127,7 @@ jobs:
- name: Build shared GC
run: |
echo "RUBY_GC_LIBRARY=${{ matrix.gc.name }}" >> $GITHUB_ENV
make shared-gc SHARED_GC=${{ matrix.gc.name }} MMTK_BUILD=${{ matrix.build }}
make shared-gc SHARED_GC=${{ matrix.gc.name }} MMTK_BUILD=${{ matrix.gc.mmtk_build }}
- name: Verify MMTk bindgen
run: |
Expand Down

0 comments on commit 982a10e

Please sign in to comment.