2019-11-19 13:20:48 +01:00
|
|
|
pipeline {
|
|
|
|
agent {label 'msspec_agent_amd64'}
|
|
|
|
stages {
|
|
|
|
stage('Initial setup...') {
|
|
|
|
steps {
|
|
|
|
echo 'Create or update the virtual Python environment'
|
|
|
|
}
|
|
|
|
}
|
2019-11-21 17:09:19 +01:00
|
|
|
|
2019-11-29 13:20:40 +01:00
|
|
|
stage('Build the code and generate tests results...') {
|
2019-11-21 17:09:19 +01:00
|
|
|
steps {
|
2020-11-17 16:46:26 +01:00
|
|
|
echo 'building..'
|
2019-11-21 17:09:19 +01:00
|
|
|
}
|
|
|
|
}
|
2019-11-29 13:47:52 +01:00
|
|
|
stage('Create a setup file...') {
|
2019-11-21 17:09:19 +01:00
|
|
|
steps {
|
2020-11-17 16:46:26 +01:00
|
|
|
echo 'creating Python pip file...'
|
2019-11-29 13:47:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Test installation...') {
|
|
|
|
steps {
|
2020-11-17 16:46:26 +01:00
|
|
|
echo 'testing the install process...'
|
2019-11-21 17:09:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Building HTML documentation...') {
|
|
|
|
steps {
|
2020-11-17 16:46:26 +01:00
|
|
|
echo 'building HTML...'
|
2019-11-21 17:09:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Syncing website...') {
|
|
|
|
steps {
|
2020-11-17 16:46:26 +01:00
|
|
|
echo 'syncing website...'
|
2019-11-21 17:09:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Cleaning up...') {
|
|
|
|
steps {
|
|
|
|
echo 'Cleaning artifacts...'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-19 13:20:48 +01:00
|
|
|
}
|
|
|
|
}
|