morethantext-web/Jenkinsfile
2022-03-23 11:17:00 -04:00

19 lines
385 B
Groovy

servepeline {
agent any
stages {
stage('Linux Testing') {
steps {
checkout
sh "cargo test"
}
}
stage('Linux Build') {
steps {
sh "cargo build --release"
archiveArtifacts artifacts: 'target/release/morethantext_web', fingerprint: true
}
}
}
}