Skip to content

feat: add Metwork installation test on rockylinux 10.0 #121

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jun 12, 2025
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
- rockylinux/rockylinux:9.4
- rockylinux/rockylinux:9.5
- rockylinux/rockylinux:9.6
- rockylinux/rockylinux:10.0
- fedora:34
- fedora:35
- fedora:36
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/integration_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,14 @@ if test "${BACKEND}" = "dnf"; then
echo "gpgcheck=0" >>/etc/yum.repos.d/metwork.repo
echo "enabled=1" >>/etc/yum.repos.d/metwork.repo
echo "metadata_expire=0" >>/etc/yum.repos.d/metwork.repo
if test "${BASE}" = "rockylinux/rockylinux"; then
dnf -y install epel-release
fi
dnf -y install metwork-mfext-full metwork-mfext-layer-python3_scientific metwork-mfext-layer-python3_extratools metwork-mfext-layer-python3_mapserverapi metwork-mfext-layer-python3_ia metwork-mfext-layer-python3_radartools
mkdir mfext mfextaddon_scientific mfextaddon_mapserver mfextaddon_python3_ia mfextaddon_radartools
dnf -y install metwork-mfserv metwork-mfdata metwork-mfbase metwork-mfadmin metwork-mfsysmon
mkdir mfserv mfdata mfbase mfadmin mfsysmon
yum -y install make cronie diffutils acl
dnf -y install make cronie diffutils acl
cd mfext
git clone -b ${BRANCH} https://github.com/metwork-framework/mfext src
cd src/integration_tests && /opt/metwork-mfext/bin/mfext_wrapper ./run_integration_tests.sh
Expand Down
Loading