Skip to content
Snippets Groups Projects
Commit 512869a9 authored by Stephen D's avatar Stephen D
Browse files

remove jenkinsfile

parent f3b7e781
No related merge requests found
pipeline {
agent {
docker {
image 'rust:latest'
}
}
stages {
stage('Clippy') {
steps {
sh "rustup component add clippy"
sh "cargo clippy --all-targets --all-features -- -D warnings"
}
}
stage('Build') {
steps {
sh "cargo build --release"
}
}
}
post {
always {
archiveArtifacts artifacts: 'target/release/dotacat', fingerprint: true
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment