summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorIan Ker-Seymer <hello@ianks.com>2023-01-12 10:14:17 -0500
committerGitHub <noreply@github.com>2023-01-12 10:14:17 -0500
commit8d3ff663899211c9c0ca2a8cf7d994e7acd3f83e (patch)
treee5adcd4caac67e4e570183b13a17d49b4821d884 /.cirrus.yml
parentbfc887f391fde6de9d088039509f6e3eaa40b3ca (diff)
downloadruby-8d3ff663899211c9c0ca2a8cf7d994e7acd3f83e.tar.gz
Enable `clippy` checks for yjit in CI (#7093)
* Add job to check clippy lints in CI * Address all remaining clippy lints * Check lints on arm64 as well * Apply latest clippy lints * Do not exit 0 on clippy warnings
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 6c47159921..20c14f375c 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -131,3 +131,4 @@ yjit_task:
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 --yjit-verify-ctx" TESTOPTS="$RUBY_TESTOPTS"
make_test_spec_script: source $HOME/.cargo/env && make test-spec RUN_OPTS="--yjit-call-threshold=1 --yjit-verify-ctx"
+ clippy_script: source $HOME/.cargo/env && cd yjit && cargo clippy --all-targets --all-features