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

18 lines
374 B
Groovy

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