Skip to content

Instantly share code, notes, and snippets.

@guilhermelinhares
Last active November 17, 2022 14:43
Show Gist options
  • Save guilhermelinhares/7c8420a3199fbeafa4243f9dd43f1122 to your computer and use it in GitHub Desktop.
Save guilhermelinhares/7c8420a3199fbeafa4243f9dd43f1122 to your computer and use it in GitHub Desktop.
Print all variables jenkins pipeline
pipeline {
agent any
stages {
stage("Print Variables") {
steps {
sh "printenv | sort"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment