summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-07-05 11:30:14 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-07-05 14:10:13 -0700
commit7c9ce38cdb781958c52a89b910ee83d5fea99048 (patch)
tree8212aca5472640dbede898935e56b9b9ec47e9fd /.cirrus.yml
parent163cdb4cd4af2d5f380c6c9cc8e5bf59ad524867 (diff)
Remove duplicated Rust installation
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8030
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml6
1 files changed, 1 insertions, 5 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index c73bb6b990..d6f88fd637 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -90,10 +90,6 @@ yjit_task:
matrix:
- CC: gcc-11
configure: --enable-yjit
- install_rust_script:
- - sudo apt-get update -y
- - sudo apt-get install -y curl
- - "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y $rustup_init"
<< : *CONFIG_TEMPLATE
make_miniruby_script: make miniruby
make_bindgen_script: |
@@ -110,4 +106,4 @@ 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 && cargo clippy --all-targets --all-features
+ clippy_script: cd yjit && rustup component add clippy && cargo clippy --all-targets --all-features