pipeline { agent any parameters { choice(name: 'ENVIRONMENT', choices: ['prepro', 'dev', 'prod'], description: 'Environment where to run the tests, by default prepro') } stages { stage('Build') { steps { echo 'Jenkinsfile for opengnsys' } } } }