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 { echo 'Build the code and generate tests results' } } stage('Create a setup file...') { steps { echo 'Create a setup file...' } } stage('Test installation...') { steps { echo 'Test installation...' } } stage('Building HTML documentation...') { steps { echo 'Building HTML documentation...' } } stage('Syncing website...') { steps { echo 'Syncing website...' } } stage('Cleaning up...') { steps { echo 'Cleaning artifacts...' } } } }