From 90137f519459764a78ae8eb777e3f396f7cffd98 Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Wed, 20 Jul 2022 10:43:14 -0400 Subject: Implement PosMarker instruction (https://github.com/Shopify/ruby/pull/328) * Implement PosMarker instruction * Implement PosMarker in the arm backend * Make bindgen run only for clang image * Fix if-else in cirrus CI file * Add missing semicolon * Try removing trailing semicolon * Try to fix shell/YAML syntax Co-authored-by: Alan Wu --- .cirrus.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.cirrus.yml') diff --git a/.cirrus.yml b/.cirrus.yml index 3e03d0adc3..293873af5b 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -116,7 +116,12 @@ yjit_task: --prefix="$RUBY_PREFIX" --enable-yjit=dev make_miniruby_script: source $HOME/.cargo/env && make -j miniruby - make_bindgen_script: source $HOME/.cargo/env && make -j yjit-bindgen + make_bindgen_script: | + if [[ "$CC" = "clang-12" ]]; then + source $HOME/.cargo/env && make -j yjit-bindgen + else + echo "only running bindgen on clang image" + fi boot_miniruby_script: RUST_BACKTRACE=1 ./miniruby --yjit-call-threshold=1 -e0 test_dump_insns_script: RUST_BACKTRACE=1 ./miniruby --yjit-call-threshold=1 --yjit-dump-insns -e0 # output_stats_script: RUST_BACKTRACE=1 ./miniruby --yjit-call-threshold=1 --yjit-stats -e0 -- cgit v1.2.1