We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b82f5 commit 7701ef8Copy full SHA for 7701ef8
Jenkinsfile
@@ -12,10 +12,11 @@ node('linux') {
12
def branches = [:]
13
branches['failFast'] = true
14
15
-for (int i = 1; i < splits.size() + 1; i++) {
+for (int i = 0; i < splits.size(); i++) {
16
def num = i
17
def split = splits[num]
18
- branches["kind-${num}"] = {
+ def index = num + 1
19
+ branches["kind-${index}"] = {
20
node('docker') {
21
timeout(90) {
22
checkout scm
0 commit comments