Skip to content

Commit e18dd4a

Browse files
authored
Remove OSX from CI (#486)
* Remove OSX from CI * Fix DSE integration test version
1 parent e0be47f commit e18dd4a

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Jenkinsfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -614,8 +614,7 @@ pipeline {
614614
'centos/8-64/cpp',
615615
'ubuntu/trusty64/cpp',
616616
'ubuntu/xenial64/cpp',
617-
'ubuntu/bionic64/cpp',
618-
'osx/high-sierra'
617+
'ubuntu/bionic64/cpp'
619618
}
620619
}
621620

tests/src/integration/ccm/cass_version.hpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -496,11 +496,7 @@ class DseVersion : public CassVersion {
496496
} else if (*this == "5.1.16") {
497497
return CassVersion("3.11.4-5116");
498498
} else if (*this >= "5.1.17" && *this < "6.0.0") {
499-
if (*this > "5.1.17") {
500-
std::cerr << "Cassandra Version is not Defined: "
501-
<< "Add Cassandra version for DSE v" << this->to_string() << std::endl;
502-
}
503-
return CassVersion("3.11.4-5117");
499+
return CassVersion("3.11.4");
504500
} else if (*this >= "6.0.0" && *this < "6.7.0") {
505501
return CassVersion(
506502
"3.11.2-5111"); // Versions before DSE 6.7 erroneously return they support Cassandra 4.0.0

0 commit comments

Comments
 (0)