Skip to content

Commit

Permalink
Add ES7 tests to Jenkins-E2E
Browse files Browse the repository at this point in the history
  • Loading branch information
kezhenxu94 committed Oct 13, 2019
1 parent 00501ef commit 0c35fe0
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions Jenkinsfile-E2E
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,15 @@ pipeline {
}
}

stage('Agent Reboot Tests') {
stage('TTL ES6 Tests') {
steps {
sh 'bash -x test/e2e/run.sh e2e-agent-reboot'
sh 'bash -x test/e2e/run.sh e2e-ttl/e2e-ttl-es'
}
}

stage('Cluster Tests (ES7/ZK)') {
steps {
sh 'bash -x test/e2e/run.sh e2e-cluster/test-runner-es7'
}
}
}
Expand All @@ -85,9 +91,15 @@ pipeline {
}
}

stage('TTL ES Tests') {
stage('Agent Reboot Tests') {
steps {
sh 'bash -x test/e2e/run.sh e2e-ttl/e2e-ttl-es'
sh 'bash -x test/e2e/run.sh e2e-agent-reboot'
}
}

stage('TTL ES7 Tests') {
steps {
sh 'bash -x test/e2e/run.sh e2e-ttl/e2e-ttl-es7'
}
}
}
Expand Down

0 comments on commit 0c35fe0

Please sign in to comment.