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 97ef0d7 commit 5cba29aCopy full SHA for 5cba29a
ci/build_test_OnCommit.groovy
@@ -47,9 +47,9 @@ pipeline {
47
}
48
49
50
- stage('Style, SDL and clean') {
+ stage('Style, SDL') {
51
options {
52
- timeout(time: 20, unit: 'MINUTES')
+ timeout(time: 20, unit: 'MINUTES')
53
54
parallel {
55
stage('Style check') {
@@ -79,6 +79,25 @@ pipeline {
79
80
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
101
stage('Build') {
102
103
timeout(time: 4, unit: 'HOURS')
0 commit comments