Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pipeline {

stage('Test') {
steps {
echo 'Testing the application'
echo 'Get the dirver path $"{ChromeDriverPath}""'
echo "Get the DriverPath ${ChromeDriverPath}"
}
}
Expand Down
15 changes: 15 additions & 0 deletions docker/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pipeline {
agent {
label 'slave'
}

stages {
stage('Hello') {
steps {
sh 'java -version'
echo "Get working directory"
sh 'pwd'
}
}
}
}