File tree Expand file tree Collapse file tree 1 file changed +60
-0
lines changed Expand file tree Collapse file tree 1 file changed +60
-0
lines changed Original file line number Diff line number Diff line change @@ -628,6 +628,66 @@ pipeline {
628
628
clusterRunner(' cluster7' )
629
629
}
630
630
}
631
+ stage(' cluster8' ) {
632
+ when {
633
+ expression {
634
+ isPRJob && needToRunTests
635
+ }
636
+ }
637
+ agent {
638
+ label ' docker-x64-min'
639
+ }
640
+ steps {
641
+ prepareNode()
642
+ unstash " sourceFILES"
643
+ clusterRunner(' cluster8' )
644
+ }
645
+ }
646
+ stage(' cluster9' ) {
647
+ when {
648
+ expression {
649
+ isPRJob && needToRunTests
650
+ }
651
+ }
652
+ agent {
653
+ label ' docker-x64-min'
654
+ }
655
+ steps {
656
+ prepareNode()
657
+ unstash " sourceFILES"
658
+ clusterRunner(' cluster9' )
659
+ }
660
+ }
661
+ stage(' cluster10' ) {
662
+ when {
663
+ expression {
664
+ isPRJob && needToRunTests
665
+ }
666
+ }
667
+ agent {
668
+ label ' docker-x64-min'
669
+ }
670
+ steps {
671
+ prepareNode()
672
+ unstash " sourceFILES"
673
+ clusterRunner(' cluster10' )
674
+ }
675
+ }
676
+ stage(' cluster11' ) {
677
+ when {
678
+ expression {
679
+ isPRJob && needToRunTests
680
+ }
681
+ }
682
+ agent {
683
+ label ' docker-x64-min'
684
+ }
685
+ steps {
686
+ prepareNode()
687
+ unstash " sourceFILES"
688
+ clusterRunner(' cluster11' )
689
+ }
690
+ }
631
691
}
632
692
}
633
693
}
You can’t perform that action at this time.
0 commit comments