From 25014d6bdea3009ae5f02a80bba9d8617ffe362d Mon Sep 17 00:00:00 2001 From: Mickael Istria Date: Fri, 17 Nov 2023 22:30:53 +0100 Subject: [PATCH] Directly install rust-analyzer from Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 94fb736..c6d1841 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,7 +19,7 @@ pipeline { sh 'org.eclipse.corrosion/scripts/rustup-init.sh -y' sh 'rustup install stable-x86_64-unknown-linux-gnu' sh 'rustup default stable-x86_64-unknown-linux-gnu' - sh 'mkdir -p ~/.local/bin' + sh 'rustup component add rust-analyzer' sh 'echo $PATH' } }