From b8e4c8fa72d6ced04f5c6192866ba0ffcb83a54b Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 25 Jul 2022 16:18:56 -0500 Subject: [PATCH] Add more testing commands --- ci/Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index b20b028..8e8c0b4 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -10,8 +10,11 @@ pipeline { stages { stage('Stage 1') { steps { + sh 'whoami' sh 'env' sh 'touch "${BUILD_ID}".txt' + sh 'ls /' + sh 'pwd' sh 'ls' } }