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

feat: Remove RHEL 7 support (breaking change, fixes #30)

parent 4a208373
Branches
No related tags found
1 merge request!27feat: Remove RHEL 7 support (breaking change, fixes #30)
---
# 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
## 2.0.x
- RHEL 7 support removed.
## 1.7.x ## 1.7.x
- Task binary integrity is also verified (in addition to the downloaded archive). - Task binary integrity is also verified (in addition to the downloaded archive).
......
...@@ -10,7 +10,6 @@ galaxy_info: ...@@ -10,7 +10,6 @@ galaxy_info:
- "2" - "2"
- name: EL - name: EL
versions: versions:
- "7"
- "8" - "8"
- name: Ubuntu - name: Ubuntu
versions: versions:
......
...@@ -11,13 +11,6 @@ platforms: ...@@ -11,13 +11,6 @@ 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: centos7-${CI_JOB_ID:-0}
image: code.europa.eu:4567/ecgalaxy/centos7-ansible:latest
pre_build_image: true
environment:
http_proxy: "${http_proxy}"
https_proxy: "${https_proxy}"
no_proxy: "${no_proxy}"
- name: rockylinux8-${CI_JOB_ID:-0} - name: rockylinux8-${CI_JOB_ID:-0}
image: code.europa.eu:4567/ecgalaxy/rockylinux8-ansible:latest image: code.europa.eu:4567/ecgalaxy/rockylinux8-ansible:latest
pre_build_image: true pre_build_image: true
......
...@@ -5,14 +5,14 @@ ...@@ -5,14 +5,14 @@
state: directory state: directory
owner: root owner: root
group: root group: root
mode: 0755 mode: 'u=rwx,go=rx'
become: true become: true
- name: Download task archive - name: Download task archive
ansible.builtin.get_url: ansible.builtin.get_url:
url: "{{ task_download_url }}" url: "{{ task_download_url }}"
dest: /tmp/task.tar.gz dest: /tmp/task.tar.gz
mode: 0655 mode: 'u=rw,go=r'
checksum: "{{ task_archive_checksum }}" checksum: "{{ task_archive_checksum }}"
changed_when: false changed_when: false
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
creates: "{{ task_install_path }}/task" creates: "{{ task_install_path }}/task"
owner: root owner: root
group: root group: root
remote_src: yes remote_src: true
become: true become: true
- name: Remove task archive - name: Remove task archive
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment