morethantext/Jenkinsfile
Jeff Baskin c538a8979c
All checks were successful
MoreThanText/morethantext/pipeline/head This commit looks good
Corrected Jenkins file.
2025-02-03 16:54:03 -05:00

28 lines
588 B
Groovy

pipeline {
agent any
stages {
stage('Rust Testing') {
steps {
sh "cargo test"
}
}
stage('Linux Build') {
steps {
sh "cargo build --release"
}
}
stage('Integration Testing') {
steps {
sh "pipenv install"
sh "pipenv run python -m unittest"
}
}
stage('Archiving') {
steps {
archiveArtifacts artifacts: 'target/release/morethantext', fingerprint: true
}
}
}
}