Skip to content

Commit

Permalink
Add env variable listing stage
Browse files Browse the repository at this point in the history
  • Loading branch information
a-larkins99 committed Feb 23, 2024
1 parent 14fb449 commit 2e354be
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,19 @@ pipeline {
}
}

stage('Display-Environment-Variables') {
steps {
script {
is (isUnix()) {
sh 'env'
}
else {
powershell 'Get-ChildItem Env:'
}
}
}
}

stage("Build-Pace-Python") {
steps {
script {
Expand Down

0 comments on commit 2e354be

Please sign in to comment.