summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-07-05 14:07:19 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-07-05 14:10:13 -0700
commitf0f099a5ff608cd87cf988ceb46c94c471e2dc50 (patch)
treec1f731263fff1a55aaa4331987f254cc876cddfa /.cirrus.yml
parent7c9ce38cdb781958c52a89b910ee83d5fea99048 (diff)
Disable clippy on Cirrus for now
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8030
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index d6f88fd637..c82fcd0271 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -106,4 +106,5 @@ yjit_task:
make_test_script: make test RUN_OPTS="--yjit-call-threshold=1 --yjit-verify-ctx"
make_test_all_script: make test-all RUN_OPTS="--yjit-call-threshold=1 --yjit-verify-ctx" TESTOPTS="$RUBY_TESTOPTS"
make_test_spec_script: make test-spec RUN_OPTS="--yjit-call-threshold=1 --yjit-verify-ctx"
- clippy_script: cd yjit && rustup component add clippy && cargo clippy --all-targets --all-features
+ # Cirrus Rust environments don't have enough permission to run `rustup component add clippy`.
+ # clippy_script: cd yjit && rustup component add clippy && cargo clippy --all-targets --all-features