From b0623765238cc18f2abc9fd56f03fed81ab1f1fe Mon Sep 17 00:00:00 2001 From: c0repwn3r Date: Wed, 19 Apr 2023 10:35:14 -0400 Subject: [PATCH] jenkins CI pt.6 --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 867decf04752c98bc2eab5cb3f6d973cd7008a79..c59cc34afc5e8ef9e58253acf4d40423f8213748 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,17 +6,17 @@ pipeline { stages { stage('Prepare') { steps { - rustup component add clippy + sh 'rustup component add clippy' } } stage('Build') { steps { - sh 'cargo build' + sh 'cargo build --locked' } } stage('Clippy') { steps { - sh 'cargo clippy' + sh 'cargo clippy --locked' } } }