-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(CAT-2005) - Update ubunut-24.04-aarch config to include default values
- Loading branch information
1 parent
e475b76
commit c42e97c
Showing
1 changed file
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
platform 'ubuntu-24.04-aarch64' do |plat| | ||
plat.inherit_from_default | ||
# this is needed as jenkins is using PDK vanagon 0.48.0 which doesn't have ubuntu-24.04-aarch64.rb | ||
# once Jenkins is using Vanagon version 0.49.0 or 0.50.0 we can revert this back | ||
|
||
platform "ubuntu-24.04-aarch64" do |plat| | ||
plat.servicedir "/lib/systemd/system" | ||
plat.defaultdir "/etc/default" | ||
plat.servicetype "systemd" | ||
plat.codename "noble" | ||
|
||
packages = %w(build-essential devscripts make quilt pkg-config debhelper rsync fakeroot cmake) | ||
plat.provision_with "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq; apt-get install -qy --no-install-recommends #{packages.join(' ')}" | ||
plat.install_build_dependencies_with "DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends " | ||
plat.vmpooler_template "ubuntu-2404-arm64" | ||
end |