~starkingdoms/starkingdoms

0f34db09c8bfe185ac74a14d823133feaa894ee8 — c0repwn3r 2 years ago b6e2816
jenkins CI pt.3
1 files changed, 9 insertions(+), 4 deletions(-)

M Jenkinsfile
M Jenkinsfile => Jenkinsfile +9 -4
@@ 4,13 4,18 @@ pipeline {
    stages {
        stage('Build') {
            steps {
                sh "cargo build"
                echo 'Building..'
            }
        }
        stage('Clippy') {
        stage('Test') {
            steps {
                sh "cargo clippy --all"
                echo 'Testing..'
            }
        }
        stage('Deploy') {
            steps {
                echo 'Deploying....'
            }
        }
    }
}
}
\ No newline at end of file