morethantext-web/Jenkinsfile

19 lines
463 B
Groovy

servepeline {
agent any
stages {
stage('Linux Testing') {
steps {
git(url: "https://gitea.baskinprattle.com/jbaskin/morethantext-web.git")
sh "cargo test"
}
}
stage('Linux Build') {
steps {
sh "cargo build --release"
archiveArtifacts artifacts: 'target/release/morethantext_web', fingerprint: true
}
}
}
}