File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments