mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Remove -j option
Close https://github.com/ruby/ruby/pull/6307 Co-authored-by: Takashi Kokubun <takashikkbn@gmail.com>
This commit is contained in:
parent
d41be1ac37
commit
811ca75f3b
1 changed files with 7 additions and 7 deletions
14
.cirrus.yml
14
.cirrus.yml
|
@ -115,19 +115,19 @@ yjit_task:
|
||||||
--with-ext=-test-/cxxanyargs,+
|
--with-ext=-test-/cxxanyargs,+
|
||||||
--prefix="$RUBY_PREFIX"
|
--prefix="$RUBY_PREFIX"
|
||||||
--enable-yjit=dev
|
--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: |
|
make_bindgen_script: |
|
||||||
if [[ "$CC" = "clang-12" ]]; then
|
if [[ "$CC" = "clang-12" ]]; then
|
||||||
source $HOME/.cargo/env && make -j yjit-bindgen
|
source $HOME/.cargo/env && make yjit-bindgen
|
||||||
else
|
else
|
||||||
echo "only running bindgen on clang image"
|
echo "only running bindgen on clang image"
|
||||||
fi
|
fi
|
||||||
boot_miniruby_script: RUST_BACKTRACE=1 ./miniruby --yjit-call-threshold=1 -e0
|
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
|
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
|
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
|
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_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 -j test-all RUN_OPTS="--yjit-call-threshold=1" TESTOPTS="$RUBY_TESTOPTS"' --test-order=alpha --name=!/TestGCCompact/'
|
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 -j test-all RUN_OPTS="--yjit-call-threshold=1" TESTS="test/ruby/test_gc_compact.rb"
|
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 -j test-spec RUN_OPTS="--yjit-call-threshold=1"
|
make_test_spec_script: source $HOME/.cargo/env && make test-spec RUN_OPTS="--yjit-call-threshold=1"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue