pipeline { agent 'python:3.10-slim-bullseye' stages { stage('Setup') { steps { sh 'Hello world!' } } stage('Check') { steps { sh 'Hello galaxy!' } } } post { always { cleanWs() } } }