Skip to content

CPP-1003 Add Jenkins runner for Ubuntu Noble #572

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

Open
wants to merge 4 commits 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
13 changes: 10 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,8 @@ pipeline {
choices: ['rocky/8-64/cpp',
'rocky/9-64/cpp',
'ubuntu/focal64/cpp',
'ubuntu/jammy64/cpp'],
'ubuntu/jammy64/cpp',
'ubuntu/noble64/cpp'],
description: '''Operating system to use for scheduled or adhoc builds
<table style="width:100%">
<col width="20%">
Expand All @@ -472,6 +473,10 @@ pipeline {
<td><strong>ubuntu/jammy64/cpp</strong></td>
<td>Ubuntu 22.04 LTS x86_64</td>
</tr>
<tr>
<td><strong>ubuntu/noble64/cpp</strong></td>
<td>Ubuntu 24.04 LTS x86_64</td>
</tr>
</table>''')
string(
name: 'INTEGRATION_TESTS_FILTER',
Expand Down Expand Up @@ -519,7 +524,8 @@ pipeline {
values 'rocky/8-64/cpp',
'rocky/9-64/cpp',
'ubuntu/focal64/cpp',
'ubuntu/jammy64/cpp'
'ubuntu/jammy64/cpp',
'ubuntu/noble64/cpp'
}
}

Expand Down Expand Up @@ -642,7 +648,8 @@ pipeline {
values 'rocky/8-64/cpp',
'rocky/9-64/cpp',
'ubuntu/focal64/cpp',
'ubuntu/jammy64/cpp'
'ubuntu/jammy64/cpp',
'ubuntu/noble64/cpp'
}
}

Expand Down