File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ projects.
29
29
30
30
## System Requirements
31
31
32
- This framework is intended to be run on an Ubuntu 20 .04 system with some basic
32
+ This framework is intended to be run on an Ubuntu 24 .04 system with some basic
33
33
developer packages installed, such as git, and passwordless sudo enabled. Note
34
34
that it will automatically install various build-dependencies on the system, so
35
35
as a safety precaution it is currently restricted to only run on an AWS instance
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ function kernel_update_upstream() {
262
262
local tag_prefix_flavour
263
263
case " ${platform} " in
264
264
generic)
265
- if [[ " $UBUNTU_DISTRIBUTION " == focal ]]; then
265
+ if [[ " $UBUNTU_DISTRIBUTION " == noble ]]; then
266
266
tag_prefix_flavour=" Ubuntu-hwe"
267
267
else
268
268
tag_prefix_flavour=" Ubuntu"
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export SUPPORTED_KERNEL_FLAVORS="generic aws gcp azure oracle"
28
28
#
29
29
export JENKINS_OPS_DIR=" ${JENKINS_OPS_DIR:- jenkins-ops} "
30
30
31
- export UBUNTU_DISTRIBUTION=" focal "
31
+ export UBUNTU_DISTRIBUTION=" noble "
32
32
33
33
#
34
34
# We currently support getting the linux kernel from 3 different sources:
@@ -1100,10 +1100,10 @@ function get_kernel_version_for_platform_from_apt() {
1100
1100
# available, it is not always the case.
1101
1101
#
1102
1102
1103
- if [[ " $platform " != generic ]] && [[ " $UBUNTU_DISTRIBUTION " == focal ]]; then
1103
+ if [[ " $platform " != generic ]] && [[ " $UBUNTU_DISTRIBUTION " == noble ]]; then
1104
1104
package=" linux-image-${platform} "
1105
1105
else
1106
- package=" linux-image-${platform} -hwe-20 .04"
1106
+ package=" linux-image-${platform} -hwe-24 .04"
1107
1107
fi
1108
1108
1109
1109
if [[ " $( apt-cache show --no-all-versions " $package " \
Original file line number Diff line number Diff line change @@ -47,10 +47,7 @@ SKIP_COPYRIGHTS_CHECK=true
47
47
function fetch() {
48
48
logmust cd " $WORKDIR /artifacts"
49
49
50
- local debs=(
51
- # Copied from https://s3.amazonaws.com/packages.treasuredata.com/4/ubuntu/focal/pool/contrib/t/td-agent/td-agent_4.4.2-1_arm64.deb
52
- " td-agent_4.4.2-1_amd64.deb b40c1883c3849e9a7bf67762c9f9a87a6119ad98f1fae64a83d754e1275a379a"
53
- )
50
+ local debs=()
54
51
55
52
local url=" http://artifactory.delphix.com/artifactory/linux-pkg/misc-debs"
56
53
You can’t perform that action at this time.
0 commit comments