38 lines
801 B
Groovy
38 lines
801 B
Groovy
pipeline {
|
|
agent {label 'msspec_agent_amd64'}
|
|
stages {
|
|
stage('Initial setup...') {
|
|
steps {
|
|
echo 'Create or update the virtual Python environment'
|
|
}
|
|
}
|
|
|
|
stage('Build the code and generate tests results...') {
|
|
steps {
|
|
}
|
|
}
|
|
stage('Create a setup file...') {
|
|
steps {
|
|
}
|
|
}
|
|
stage('Test installation...') {
|
|
steps {
|
|
}
|
|
}
|
|
stage('Building HTML documentation...') {
|
|
steps {
|
|
}
|
|
}
|
|
stage('Syncing website...') {
|
|
steps {
|
|
}
|
|
}
|
|
stage('Cleaning up...') {
|
|
steps {
|
|
echo 'Cleaning artifacts...'
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|