We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e046b commit 928c94cCopy full SHA for 928c94c
.github/workflows/ci.yml
@@ -7,6 +7,7 @@ on:
7
- v1.8.2\+RAI
8
- v1.9.2\+RAI
9
- dev
10
+ - upstream-ready/sticky
11
12
concurrency:
13
# Cancels pending runs when a PR gets updated.
@@ -39,7 +40,7 @@ jobs:
39
40
strategy:
41
fail-fast: false
42
matrix:
- gc_plan: [Immix]
43
+ gc_plan: [Immix, StickyImmix]
44
moving: [Non_Moving]
45
uses: ./.github/workflows/binding-tests.yml
46
with:
mmtk/build.rs
@@ -85,6 +85,8 @@ fn main() {
85
.clang_arg("-std=c++14")
86
// using MMTK types
87
.clang_arg("-DMMTK_GC")
88
+ // using Immix, but the types should be the same for either GC
89
+ .clang_arg("-DMMTK_PLAN_IMMIX")
90
// Finish the builder and generate the bindings.
91
.generate()
92
// Unwrap the Result and panic on failure.
0 commit comments