Skip to content
Merged
Show file tree
Hide file tree
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
31 changes: 31 additions & 0 deletions lib/vanagon/platform/defaults/ubuntu-24.04-armhf.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
platform "ubuntu-24.04-armhf" do |plat|
plat.servicedir "/lib/systemd/system"
plat.defaultdir "/etc/default"
plat.servicetype "systemd"
plat.codename "noble"

packages = %w(
autoconf
build-essential
cmake
curl
debhelper
devscripts
fakeroot
libbz2-dev
libreadline-dev
libselinux1-dev
openjdk-8-jre-headless
pkg-config
quilt
rsync
swig
systemd
systemtap-sdt-dev
zlib1g-dev
)
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.docker_image "ubuntu:24.04"
plat.docker_arch "linux/arm/v7"
end
31 changes: 31 additions & 0 deletions lib/vanagon/platform/defaults/ubuntu-25.04-armhf.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
platform "ubuntu-25.04-armhf" do |plat|
plat.servicedir "/lib/systemd/system"
plat.defaultdir "/etc/default"
plat.servicetype "systemd"
plat.codename "plucky"

packages = %w(
autoconf
build-essential
cmake
curl
debhelper
devscripts
fakeroot
libbz2-dev
libreadline-dev
libselinux1-dev
openjdk-8-jre-headless
pkg-config
quilt
rsync
swig
systemd
systemtap-sdt-dev
zlib1g-dev
)
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.docker_image "ubuntu:25.04"
plat.docker_arch "linux/arm/v7"
end