-
Notifications
You must be signed in to change notification settings - Fork 78
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 #834 from amitkarsale/vanagon-228
(vanagon-228) Add fedora38 x86_64
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 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
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,17 @@ | ||
platform 'fedora-38-x86_64' do |plat| | ||
plat.servicedir '/usr/lib/systemd/system' | ||
plat.defaultdir '/etc/sysconfig' | ||
plat.servicetype 'systemd' | ||
plat.dist 'fc38' | ||
|
||
packages = %w[ | ||
autoconf automake bzip2-devel gcc gcc-c++ libselinux-devel | ||
libsepol libsepol-devel make cmake pkgconfig readline-devel | ||
rpmdevtools rsync swig zlib-devel systemtap-sdt-devel | ||
perl-lib perl-FindBin | ||
] | ||
plat.provision_with("/usr/bin/dnf install -y --best --allowerasing #{packages.join(' ')}") | ||
|
||
plat.install_build_dependencies_with '/usr/bin/dnf install -y --best --allowerasing' | ||
plat.vmpooler_template 'fedora-38-x86_64' | ||
end |