This commit is contained in:
Sylvain Tricot 2021-09-24 16:32:33 +02:00
commit 85d8936f8e
1 changed files with 6 additions and 6 deletions

12
Jenkinsfile vendored
View File

@ -1,7 +1,7 @@
pipeline { pipeline {
agent {label 'msspec_agent_amd64'} agent {label 'msspec_agent_amd64'}
stages { stages {
stage('Initial setup...') { stage('Initial setup....') {
steps { steps {
echo 'Create or update the virtual Python environment' echo 'Create or update the virtual Python environment'
} }
@ -9,27 +9,27 @@ pipeline {
stage('Build the code and generate tests results...') { stage('Build the code and generate tests results...') {
steps { steps {
echo 'building..' echo 'Build the code and generate tests results'
} }
} }
stage('Create a setup file...') { stage('Create a setup file...') {
steps { steps {
echo 'creating Python pip file...' echo 'Create a setup file...'
} }
} }
stage('Test installation...') { stage('Test installation...') {
steps { steps {
echo 'testing the install process...' echo 'Test installation...'
} }
} }
stage('Building HTML documentation...') { stage('Building HTML documentation...') {
steps { steps {
echo 'building HTML...' echo 'Building HTML documentation...'
} }
} }
stage('Syncing website...') { stage('Syncing website...') {
steps { steps {
echo 'syncing website...' echo 'Syncing website...'
} }
} }
stage('Cleaning up...') { stage('Cleaning up...') {