ruby-changes:73348
From: Nobuyoshi <ko1@a...>
Date: Thu, 1 Sep 2022 07:09:46 +0900 (JST)
Subject: [ruby-changes:73348] 811ca75f3b (master): Remove -j option
https://git.ruby-lang.org/ruby.git/commit/?id=811ca75f3b From 811ca75f3bdea4fb6d8271d848f3b79f20432880 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Wed, 31 Aug 2022 18:37:07 +0900 Subject: Remove -j option Close https://github.com/ruby/ruby/pull/6307 Co-authored-by: Takashi Kokubun <takashikkbn@g...> --- .cirrus.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 4949e6cb3e..ba44703211 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -115,19 +115,19 @@ yjit_task: https://github.com/ruby/ruby/blob/trunk/.cirrus.yml#L115 --with-ext=-test-/cxxanyargs,+ --prefix="$RUBY_PREFIX" --enable-yjit=dev - make_miniruby_script: source $HOME/.cargo/env && make -j miniruby + make_miniruby_script: source $HOME/.cargo/env && make miniruby make_bindgen_script: | if [[ "$CC" = "clang-12" ]]; then - source $HOME/.cargo/env && make -j yjit-bindgen + source $HOME/.cargo/env && make 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 - full_build_script: source $HOME/.cargo/env && make -j + full_build_script: source $HOME/.cargo/env && make cargo_test_script: source $HOME/.cargo/env && cd yjit && cargo test - make_test_script: source $HOME/.cargo/env && make -j test RUN_OPTS="--yjit-call-threshold=1 --yjit-verify-ctx" - make_test_all_script: source $HOME/.cargo/env && make -j test-all RUN_OPTS="--yjit-call-threshold=1" TESTOPTS="$RUBY_TESTOPTS"' --test-order=alpha --name=!/TestGCCompact/' - test_gc_compact_script: source $HOME/.cargo/env && make -j test-all RUN_OPTS="--yjit-call-threshold=1" TESTS="test/ruby/test_gc_compact.rb" - make_test_spec_script: source $HOME/.cargo/env && make -j test-spec RUN_OPTS="--yjit-call-threshold=1" + make_test_script: source $HOME/.cargo/env && make test RUN_OPTS="--yjit-call-threshold=1 --yjit-verify-ctx" + make_test_all_script: source $HOME/.cargo/env && make test-all RUN_OPTS="--yjit-call-threshold=1" TESTOPTS="$RUBY_TESTOPTS"' --test-order=alpha --name=!/TestGCCompact/' + test_gc_compact_script: source $HOME/.cargo/env && make test-all RUN_OPTS="--yjit-call-threshold=1" TESTS="test/ruby/test_gc_compact.rb" + make_test_spec_script: source $HOME/.cargo/env && make test-spec RUN_OPTS="--yjit-call-threshold=1" -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/