Skip to content

Commit

Permalink
Fix steps
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrks committed May 20, 2019
1 parent 2eef484 commit 9aa2ea5
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -223,17 +223,21 @@ pipeline {
}

stage('LiteCore') {
steps {
stages {
stage('CE') {
echo 'Example of where we could run lite-core unit tests against a running SG CE'
gitStatusWrapper(credentialsId: 'bbrks_uberjenkins_sg_access_token', description: 'Running LiteCore Tests', failureDescription: 'CE with LiteCore Test Failed', gitHubContext: 'sgw-pipeline-litecore-ce', successDescription: 'CE with LiteCore Test Passed') {
echo "TODO"
steps {
echo 'Example of where we could run lite-core unit tests against a running SG CE'
gitStatusWrapper(credentialsId: 'bbrks_uberjenkins_sg_access_token', description: 'Running LiteCore Tests', failureDescription: 'CE with LiteCore Test Failed', gitHubContext: 'sgw-pipeline-litecore-ce', successDescription: 'CE with LiteCore Test Passed') {
echo "TODO"
}
}
}
stage('EE') {
echo 'Example of where we could run lite-core unit tests against a running SG EE'
gitStatusWrapper(credentialsId: 'bbrks_uberjenkins_sg_access_token', description: 'Running LiteCore Tests', failureDescription: 'EE with LiteCore Test Failed', gitHubContext: 'sgw-pipeline-litecore-ee', successDescription: 'EE with LiteCore Test Passed') {
echo "TODO"
steps {
echo 'Example of where we could run lite-core unit tests against a running SG EE'
gitStatusWrapper(credentialsId: 'bbrks_uberjenkins_sg_access_token', description: 'Running LiteCore Tests', failureDescription: 'EE with LiteCore Test Failed', gitHubContext: 'sgw-pipeline-litecore-ee', successDescription: 'EE with LiteCore Test Passed') {
echo "TODO"
}
}
}
}
Expand Down

0 comments on commit 9aa2ea5

Please sign in to comment.