morethantext-web/Jenkinsfile

18 lines
371 B
Plaintext
Raw Normal View History

2022-03-23 11:53:10 -04:00
pipeline {
2022-03-23 10:28:56 -04:00
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
}
}
}
}