Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save darinpope/c16d0736831f5f845e8e59717cd12ecd to your computer and use it in GitHub Desktop.
Save darinpope/c16d0736831f5f845e8e59717cd12ecd to your computer and use it in GitHub Desktop.

Gist for https://youtu.be/k0gnxnf3Rdw

Documentation

Jenkinsfile

pipeline {
  agent any
  parameters {
    booleanParam defaultValue: true, description: 'Is this a debug build?', name: 'DEBUG_BUILD'
  }
  stages {
    stage('Example') {
      steps {
        sh "echo 'DEBUG_BUILD': ${params.'DEBUG_BUILD'}"
      }
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment