pipeline { agent any stages { stage('Prepare') { steps { echo 'Preparing the build system environment' } } stage('Build') { steps { echo 'Building the package' } } stage('Test') { steps { echo 'Testing the package' } } stage('Deploy') { steps { echo 'Deploying to repositories..' } } } }