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 'building..' } } stage('Create a setup file...') { steps { echo 'creating Python pip file...' } } stage('Test installation...') { steps { echo 'testing the install process...' } } stage('Building HTML documentation...') { steps { echo 'building HTML...' } } stage('Syncing website...') { steps { echo 'syncing website...' } } stage('Cleaning up...') { steps { echo 'Cleaning artifacts...' } } } }