Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit dea7ed44 authored by Jean-François HOVINNE's avatar Jean-François HOVINNE
Browse files

feat: Add Rocky Linux 9 (RHEL 9) support (fixes #76)

parent fb19ab38
Branches
Tags
No related merge requests found
# Releases # Releases
## 1.3.x
- Support for Rocky Linux 9 (RHEL 9) is added.
## 1.2.x ## 1.2.x
- Support for Ubuntu 22.04 LTS is added. - Support for Ubuntu 22.04 LTS is added.
......
...@@ -13,6 +13,7 @@ galaxy_info: ...@@ -13,6 +13,7 @@ galaxy_info:
versions: versions:
- "7" - "7"
- "8" - "8"
- "9"
- name: Ubuntu - name: Ubuntu
versions: versions:
- bionic - bionic
......
...@@ -25,6 +25,13 @@ platforms: ...@@ -25,6 +25,13 @@ platforms:
http_proxy: "${http_proxy}" http_proxy: "${http_proxy}"
https_proxy: "${https_proxy}" https_proxy: "${https_proxy}"
no_proxy: "${no_proxy}" no_proxy: "${no_proxy}"
- name: rockylinux9-${CI_JOB_ID:-0}
image: code.europa.eu:4567/ecgalaxy/rockylinux9-ansible:latest
pre_build_image: true
environment:
http_proxy: "${http_proxy}"
https_proxy: "${https_proxy}"
no_proxy: "${no_proxy}"
- name: ubuntu1804-${CI_JOB_ID:-0} - name: ubuntu1804-${CI_JOB_ID:-0}
image: code.europa.eu:4567/ecgalaxy/ubuntu1804-ansible:latest image: code.europa.eu:4567/ecgalaxy/ubuntu1804-ansible:latest
pre_build_image: true pre_build_image: true
......
...@@ -13,3 +13,10 @@ ...@@ -13,3 +13,10 @@
become: true become: true
when: when:
- ansible_pkg_mgr == "yum" - ansible_pkg_mgr == "yum"
- name: Update dnf cache
ansible.builtin.dnf:
update_cache: yes
become: true
when:
- ansible_pkg_mgr == "dnf"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment