Skip to content

Commit 3a5d879

Browse files
authored
Merge pull request #30 from bastelfreak/fuckup
Readd Amazon 2023 support
2 parents 524a386 + e6ba390 commit 3a5d879

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
platform 'amazon-2023-aarch64' do |plat|
2+
plat.inherit_from_default
3+
4+
packages = %w[
5+
perl-FindBin
6+
perl-lib
7+
readline-devel
8+
systemtap-sdt-devel
9+
systemtap-sdt-dtrace
10+
zlib-devel
11+
]
12+
13+
plat.provision_with "dnf install -y --allowerasing #{packages.join(' ')}"
14+
plat.install_build_dependencies_with 'dnf install -y --allowerasing'
15+
plat.vmpooler_template 'amazon-2023-arm64'
16+
end
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
platform 'amazon-2023-x86_64' do |plat|
2+
plat.inherit_from_default
3+
4+
packages = %w[
5+
perl-FindBin
6+
perl-lib
7+
readline-devel
8+
systemtap-sdt-devel
9+
systemtap-sdt-dtrace
10+
zlib-devel
11+
]
12+
13+
plat.provision_with "dnf install -y --allowerasing #{packages.join(' ')}"
14+
plat.install_build_dependencies_with 'dnf install -y --allowerasing'
15+
plat.vmpooler_template 'amazon-2023-x86_64'
16+
end

0 commit comments

Comments
 (0)