Skip to content

Commit cfb7e0d

Browse files
committed
Use default plan for CI if not specified.
This allows mmtk-core to do extended test without specifying a plan, so that mmtk-ruby can decide the default plan without updating mmtk-core.
1 parent e226354 commit cfb7e0d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/scripts/common.sh

+5
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@ RUBY_PATH=$BINDING_PATH/../ruby
33
RUBY_BUILD_PATH=$RUBY_PATH/build
44
RUBY_INSTALL_PATH=$RUBY_BUILD_PATH/install
55
RUSTUP_TOOLCHAIN=`cat $BINDING_PATH/mmtk/rust-toolchain`
6+
DEFAULT_PLAN=Immix
7+
8+
if test -z "$CHOSEN_PLAN"; then
9+
CHOSEN_PLAN=$DEFAULT_PLAN
10+
fi

0 commit comments

Comments
 (0)