Jenkinsfile added whoami

This commit is contained in:
Andreas Greiner 2021-08-08 14:46:25 +02:00
parent 605905361b
commit eae07427ec

5
Jenkinsfile vendored
View File

@ -7,6 +7,11 @@ node {
stage('Clone repository') { stage('Clone repository') {
checkout scm checkout scm
} }
stage('Whoami'){
sh """
whoami
"""
}
stage('Enable docker experimental features'){ stage('Enable docker experimental features'){
sh """ sh """
export DOCKER_CLI_EXPERIMENTAL=enabled export DOCKER_CLI_EXPERIMENTAL=enabled