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 95288cd8 authored by Jean-François HOVINNE's avatar Jean-François HOVINNE
Browse files

feat: Add Ubuntu 24.04 support (fixes #77)

parent dea7ed44
Branches
Tags
No related merge requests found
---
# Based on ansible-lint config
extends: default
rules:
braces:
max-spaces-inside: 1
level: error
brackets:
max-spaces-inside: 1
level: error
colons:
max-spaces-after: -1
level: error
commas:
max-spaces-after: -1
level: error
comments: disable
comments-indentation: disable
document-start: disable
empty-lines:
max: 3
level: error
hyphens:
level: error
indentation: disable
key-duplicates: enable
line-length: disable
new-line-at-end-of-file: disable
new-lines:
type: unix
trailing-spaces: disable
truthy: disable
# Releases # Releases
## 1.4.x
- Support for Ubuntu 24.04 LTS is added.
## 1.3.x ## 1.3.x
- Support for Rocky Linux 9 (RHEL 9) is added. - Support for Rocky Linux 9 (RHEL 9) is added.
......
...@@ -19,6 +19,7 @@ galaxy_info: ...@@ -19,6 +19,7 @@ galaxy_info:
- bionic - bionic
- focal - focal
- jammy - jammy
- noble
galaxy_tags: galaxy_tags:
- bootstrap - bootstrap
- system - system
......
...@@ -53,6 +53,13 @@ platforms: ...@@ -53,6 +53,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: ubuntu2404-${CI_JOB_ID:-0}
image: code.europa.eu:4567/ecgalaxy/ubuntu2404-ansible:latest
pre_build_image: true
environment:
http_proxy: "${http_proxy}"
https_proxy: "${https_proxy}"
no_proxy: "${no_proxy}"
provisioner: provisioner:
name: ansible name: ansible
inventory: inventory:
......
--- ---
- name: Update apt cache - name: Update apt cache
ansible.builtin.apt: ansible.builtin.apt:
update_cache: yes update_cache: true
cache_valid_time: 3600 cache_valid_time: 3600
become: true become: true
when: when:
...@@ -9,14 +9,14 @@ ...@@ -9,14 +9,14 @@
- name: Update yum cache - name: Update yum cache
ansible.builtin.yum: ansible.builtin.yum:
update_cache: yes update_cache: true
become: true become: true
when: when:
- ansible_pkg_mgr == "yum" - ansible_pkg_mgr == "yum"
- name: Update dnf cache - name: Update dnf cache
ansible.builtin.dnf: ansible.builtin.dnf:
update_cache: yes update_cache: true
become: true become: true
when: when:
- ansible_pkg_mgr == "dnf" - 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