Skip to content

Commit 5e1fb78

Browse files
committed
comment out the mac test for now.
1 parent e8cc2e8 commit 5e1fb78

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Jenkinsfile

+6-5
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ pipeline {
3131
}
3232
stage('Run Tests') {
3333
parallel {
34-
stage("Test on Windows") {
34+
stage("Test on Windows") {
3535
environment {
3636
CARGO_HOME = 'C:\\Users\\root\\.cargo'
3737
RUSTUP_HOME = 'C:\\Users\\root\\.rustup'
3838
}
39-
agent {
40-
label 'windows'
39+
agent {
40+
label 'windows'
4141
}
4242
steps {
4343
echo 'Cleaning...'
@@ -63,7 +63,8 @@ pipeline {
6363
echo 'Tests done!'
6464
}
6565
}
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") {
6768
environment {
6869
CARGO_HOME = '/Users/jenkins/.cargo'
6970
RUSTUP_HOME = '/Users/jenkins/.rustup'
@@ -78,7 +79,7 @@ pipeline {
7879
sh '/Users/jenkins/.cargo/bin/cargo test --features="tester"'
7980
echo 'Tests done!'
8081
}
81-
}
82+
} */
8283
}
8384
}
8485
stage('Calculate Coverage') {

0 commit comments

Comments
 (0)