Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove centos7 and add Cassandra 5.0-beta1 #565

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 14 additions & 21 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,9 @@ pipeline {
choice(
name: 'ADHOC_BUILD_AND_EXECUTE_TESTS_SERVER_VERSION',
choices: [
'3.0', // Previous Apache Cassandra
'3.11', // Current Apache Cassandra
'4.0', // Development Apache Cassandra
'4.0', // Current Apache Cassandra
'5.0-beta1', // Current Apache Cassandra
'dse-5.1.35', // Legacy DataStax Enterprise
'dse-6.8.30', // Development DataStax Enterprise
'ALL'],
Expand All @@ -420,31 +420,30 @@ pipeline {
<th align="left">Choice</th>
<th align="left">Description</th>
</tr>
<tr>
<td><strong>3.0</strong></td>
<td>Apache Cassandra&reg; v3.0.x</td>
</tr>
<tr>
<td><strong>3.11</strong></td>
<td>Apache Cassandra&reg; v3.11.x</td>
</tr>
<tr>
<td><strong>4.0</strong></td>
<td>Apache Cassandra&reg; v4.x (<b>CURRENTLY UNDER DEVELOPMENT</b>)</td>
<td>Apache Cassandra&reg; v4.x</td>
</tr>
<tr>
<td><strong>5.0-beta1</strong></td>
<td>Apache Cassandra&reg; v5.0-beta1 (<b>CURRENTLY UNDER DEVELOPMENT</b>)</td>
</tr>
<tr>
<td><strong>dse-5.1</strong></td>
<td>DataStax Enterprise v5.1.x</td>
</tr>
<tr>
<td><strong>dse-6.8</strong></td>
<td>DataStax Enterprise v6.8.x (<b>CURRENTLY UNDER DEVELOPMENT</b>)</td>
<td>DataStax Enterprise v6.8.x</td>
</tr>
</table>''')
choice(
name: 'OS_VERSION',
choices: ['centos/7-64/cpp',
'rocky/8-64/cpp',
choices: ['rocky/8-64/cpp',
'rocky/9-64/cpp',
'ubuntu/bionic64/cpp',
'ubuntu/focal64/cpp',
Expand All @@ -457,10 +456,6 @@ pipeline {
<th align="left">Choice</th>
<th align="left">Description</th>
</tr>
<tr>
<td><strong>centos/7-64/cpp</strong></td>
<td>CentOS 7 x86_64</td>
</tr>
<tr>
<td><strong>rocky/8-64/cpp</strong></td>
<td>Rocky Linux 8 x86_64</td>
Expand Down Expand Up @@ -525,8 +520,7 @@ pipeline {
axes {
axis {
name 'OS_VERSION'
values 'centos/7-64/cpp',
'rocky/8-64/cpp',
values 'rocky/8-64/cpp',
'rocky/9-64/cpp',
'ubuntu/bionic64/cpp',
'ubuntu/focal64/cpp',
Expand Down Expand Up @@ -650,8 +644,7 @@ pipeline {
axes {
axis {
name 'OS_VERSION'
values 'centos/7-64/cpp',
'rocky/8-64/cpp',
values 'rocky/8-64/cpp',
'rocky/9-64/cpp',
'ubuntu/bionic64/cpp',
'ubuntu/focal64/cpp',
Expand Down Expand Up @@ -728,9 +721,9 @@ pipeline {
axes {
axis {
name 'SERVER_VERSION'
values '3.0', // Previous Apache Cassandra
'3.11', // Current Apache Cassandra
'4.0', // Development Apache Cassandra
values '3.11', // Current Apache Cassandra
'4.0', // Current Apache Cassandra
'5.0-beta1', // Development Apache Cassandra
'dse-5.1.35', // Legacy DataStax Enterprise
'dse-6.8.30' // Development DataStax Enterprise
}
Expand Down