File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -47,9 +47,9 @@ pipeline {
47
47
}
48
48
}
49
49
}
50
- stage(' Style, SDL and clean ' ) {
50
+ stage(' Style, SDL' ) {
51
51
options {
52
- timeout(time : 20 , unit : ' MINUTES' )
52
+ timeout(time : 20 , unit : ' MINUTES' )
53
53
}
54
54
parallel {
55
55
stage(' Style check' ) {
@@ -79,6 +79,25 @@ pipeline {
79
79
}
80
80
}
81
81
}
82
+ stage(' Cleanup node' ) {
83
+ options {
84
+ timeout(time : 30 , unit : ' MINUTES' )
85
+ }
86
+ agent {
87
+ label ' win_ovms'
88
+ }
89
+ steps {
90
+ script {
91
+ agent_name_windows = env. NODE_NAME
92
+ def windows = load ' ci/loadWin.groovy'
93
+ if (windows != null ) {
94
+ windows. cleanup_directories()
95
+ } else {
96
+ error " Cannot load ci/loadWin.groovy file."
97
+ }
98
+ }
99
+ }
100
+ }
82
101
stage(' Build' ) {
83
102
options {
84
103
timeout(time : 4 , unit : ' HOURS' )
You can’t perform that action at this time.
0 commit comments