-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #821 from span786/VANAGON-231-add-amazon-linux-202…
…3-platform-definition-to-vanagon (VANAGON-231) : Added amazon linux 2023 platform for intel & arm
- Loading branch information
Showing
3 changed files
with
21 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
platform "amazon-2023-aarch64" do |plat| | ||
plat.servicedir "/usr/lib/systemd/system" | ||
plat.defaultdir "/etc/sysconfig" | ||
plat.servicetype "systemd" | ||
|
||
packages = %w(autoconf automake createrepo gcc gcc-c++ rsync cmake make rpm-libs rpm-build libarchive) | ||
plat.provision_with "dnf install -y --allowerasing #{packages.join(' ')}" | ||
plat.install_build_dependencies_with "dnf install -y --allowerasing " | ||
plat.vmpooler_template "amazon-2023-arm64" | ||
end |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
platform "amazon-2023-x86_64" do |plat| | ||
plat.servicedir "/usr/lib/systemd/system" | ||
plat.defaultdir "/etc/sysconfig" | ||
plat.servicetype "systemd" | ||
|
||
packages = %w(gcc gcc-c++ autoconf automake createrepo rsync cmake make rpm-libs rpm-build rpm-sign libtool libarchive) | ||
plat.provision_with "dnf install -y --allowerasing #{packages.join(' ')}" | ||
plat.install_build_dependencies_with "dnf install -y --allowerasing " | ||
plat.vmpooler_template "amazon-2023-x86_64" | ||
end |
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