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 BuildAutomation/src/main/java/chrome/Login.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Login {

@Test
public void loginToLeafTaps() {
// Read the param
// Read the param comment
String browser = System.getProperty("browser");
System.out.print(browser);
if(browser == null){
Expand Down
28 changes: 23 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pipeline {
stage('Development') {
steps {
echo 'This is development'
sleep 2
git(url: 'https://github.com/LeafPages/EyeManage', branch: 'master')
}
}
Expand All @@ -16,8 +17,25 @@ pipeline {
}

stage('Deploy to QA') {
steps {
echo 'Deploy to AWS QA Server'
parallel {
stage('Deploy to QA') {
steps {
echo 'Deploy to AWS QA Server'
}
}

stage('Sleep at partitioning of QA stage') {
steps {
sleep 5
}
}

stage('Nested QA stage') {
steps {
echo 'Nested stage of QA team'
}
}

}
}

Expand Down Expand Up @@ -46,7 +64,7 @@ pipeline {

stage('Deploy to UAT') {
steps {
echo 'Deploy to UAT AWS Server'
echo 'UAT test scripts execution'
}
}

Expand All @@ -65,8 +83,8 @@ pipeline {

}
steps {
echo 'Deploy to AWS Prod'
jiraComment(issueKey: 'SFO-107', body: 'This is a comment regarding the quality of the response.')
echo 'Deploy to Prod'
jiraComment(issueKey: 'VPTS-1751', body: 'This is a comment regarding the quality of the response.')
}
}

Expand Down