~starkingdoms/starkingdoms

373d9a5a9fdc7dbe25ace661e7aa1df14b4a88c4 — c0repwn3r 2 years ago 603d2bb
jenkins CI
1 files changed, 18 insertions(+), 0 deletions(-)

A Jenkinsfile
A Jenkinsfile => Jenkinsfile +18 -0
@@ 0,0 1,18 @@
pipeline {
    agent {
        table 'rust'
    }

    stages {
        stage('Build') {
            steps {
                sh "cargo build"
            }
        }
        stage('Clippy') {
            steps {
                sh "cargo clippy --all"
            }
        }
    }
}