You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
580 B
Groovy
28 lines
580 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 pytest"
|
|
}
|
|
}
|
|
stage('Archiving') {
|
|
steps {
|
|
archiveArtifacts artifacts: 'target/release/morethantext_web', fingerprint: true
|
|
}
|
|
}
|
|
}
|
|
}
|