msspec_python3/Jenkinsfile

43 lines
1.0 KiB
Plaintext
Raw Normal View History

pipeline {
agent {label 'msspec_agent_amd64'}
stages {
2020-11-17 14:34:32 +01:00
stage('Initial setup....') {
steps {
echo 'Create or update the virtual Python environment'
}
}
2019-11-21 17:09:19 +01:00
stage('Build the code and generate tests results...') {
2019-11-21 17:09:19 +01:00
steps {
2020-11-09 20:14:07 +01:00
echo 'Build the code and generate tests results'
2019-11-21 17:09:19 +01:00
}
}
stage('Create a setup file...') {
2019-11-21 17:09:19 +01:00
steps {
2020-11-09 20:14:07 +01:00
echo 'Create a setup file...'
}
}
stage('Test installation...') {
steps {
2020-11-09 20:14:07 +01:00
echo 'Test installation...'
2019-11-21 17:09:19 +01:00
}
}
stage('Building HTML documentation...') {
steps {
2020-11-09 20:14:07 +01:00
echo 'Building HTML documentation...'
2019-11-21 17:09:19 +01:00
}
}
stage('Syncing website...') {
steps {
2020-11-09 20:14:07 +01:00
echo 'Syncing website...'
2019-11-21 17:09:19 +01:00
}
}
stage('Cleaning up...') {
steps {
echo 'Cleaning artifacts...'
}
}
}
}