diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c18d2444..0948c85c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,6 +30,8 @@ test: parallel: matrix: - RUNNER: + - aws/fedora-41-x86_64 + - aws/fedora-42-x86_64 - aws/rhel-9.6-nightly-x86_64 - aws/rhel-10.0-nightly-x86_64 INTERNAL_NETWORK: ["true"] diff --git a/schutzbot/make_rpm_and_install.sh b/schutzbot/make_rpm_and_install.sh index eda1a7a2..7f58d660 100755 --- a/schutzbot/make_rpm_and_install.sh +++ b/schutzbot/make_rpm_and_install.sh @@ -6,12 +6,16 @@ source /etc/os-release sudo dnf install -y \ libappstream-glib -# RHEL9 has nodejs and npm separately if [[ "$ID" == rhel && ${VERSION_ID%.*} == 10 ]]; then sudo dnf install -y nodejs-npm \ sqlite # node fails to pull this in -else +elif [[ "$ID" == rhel ]]; then sudo dnf install -y npm +elif [[ "$ID" == fedora ]]; then + sudo dnf install -y \ + nodejs-npm \ + sqlite \ + gettext fi npm ci