~starkingdoms/starkingdoms

b0623765238cc18f2abc9fd56f03fed81ab1f1fe — c0repwn3r 2 years ago 3ef7a2f
jenkins CI pt.6
1 files changed, 3 insertions(+), 3 deletions(-)

M Jenkinsfile
M Jenkinsfile => Jenkinsfile +3 -3
@@ 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'
            }
        }
    }