File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ pipeline {
31
31
}
32
32
stage(' Run Tests' ) {
33
33
parallel {
34
- stage(" Test on Windows" ) {
34
+ stage(" Test on Windows" ) {
35
35
environment {
36
36
CARGO_HOME = ' C:\\ Users\\ root\\ .cargo'
37
37
RUSTUP_HOME = ' C:\\ Users\\ root\\ .rustup'
38
38
}
39
- agent {
40
- label ' windows'
39
+ agent {
40
+ label ' windows'
41
41
}
42
42
steps {
43
43
echo ' Cleaning...'
@@ -63,7 +63,8 @@ pipeline {
63
63
echo ' Tests done!'
64
64
}
65
65
}
66
- stage(" Test on macOS" ) {
66
+ // Skip macOS stage for now until we can get a stable machine to run on
67
+ /* stage("Test on macOS") {
67
68
environment {
68
69
CARGO_HOME = '/Users/jenkins/.cargo'
69
70
RUSTUP_HOME = '/Users/jenkins/.rustup'
@@ -78,7 +79,7 @@ pipeline {
78
79
sh '/Users/jenkins/.cargo/bin/cargo test --features="tester"'
79
80
echo 'Tests done!'
80
81
}
81
- }
82
+ } */
82
83
}
83
84
}
84
85
stage(' Calculate Coverage' ) {
You can’t perform that action at this time.
0 commit comments