1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_ranger.git synced 2024-08-16 14:19:48 +02:00

update galaxy and linting

This commit is contained in:
L3D 2021-03-12 23:44:16 +01:00
parent a97cf9b55b
commit c4ee96e0e7
Signed by: l3d
GPG key ID: CD08445BFF4313D1
29 changed files with 211 additions and 201 deletions

1
.github/FUNDING.yml vendored
View file

@ -1,3 +1,4 @@
---
# Feel free to add yourself after && during participating at this repo! # Feel free to add yourself after && during participating at this repo!
github: [do1jlr] github: [do1jlr]

View file

@ -1,5 +1,7 @@
---
name: Ansible check alpine:latest name: Ansible check alpine:latest
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check archlinux:latest name: Ansible check archlinux:latest
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,16 +0,0 @@
name: Ansible check centos:centos6
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ansible check with ubuntu:centos6
uses: roles-ansible/check-ansible-centos-centos6-action@master
with:
targets: "./"

View file

@ -1,5 +1,7 @@
---
name: Ansible check centos:centos7 name: Ansible check centos:centos7
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check centos:centos8 name: Ansible check centos:centos8
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check centos:latest name: Ansible check centos:latest
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check debian:buster name: Ansible check debian:buster
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check debian:latest name: Ansible check debian:latest
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check debian:sid name: Ansible check debian:sid
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,6 +1,14 @@
---
name: Ansible check debian:stable name: Ansible check debian:stable
on: [push, pull_request] # yamllint disable-line rule:truthy
on:
push:
branches: '*'
pull_request:
branches: '*'
schedule:
- cron: '23 6 * */1 *'
jobs: jobs:
build: build:

View file

@ -1,5 +1,7 @@
---
name: Ansible check debian:stretch name: Ansible check debian:stretch
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check fedora:31 name: Ansible check fedora:31
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check fedora:32 name: Ansible check fedora:32
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check fedora:33 name: Ansible check fedora:33
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check fedora:latest name: Ansible check fedora:latest
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,6 +1,14 @@
---
name: Ansible Lint check name: Ansible Lint check
on: [push, pull_request] # yamllint disable-line rule:truthy
on:
push:
branches: '*'
pull_request:
branches: '*'
schedule:
- cron: '42 6 * */1 *'
jobs: jobs:
build: build:

View file

@ -1,5 +1,7 @@
---
name: Ansible check ubuntu:bionic name: Ansible check ubuntu:bionic
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,16 +0,0 @@
name: Ansible check ubuntu:eoan
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ansible check with ubuntu:eoan
uses: roles-ansible/check-ansible-ubuntu-eoan-action@master
with:
targets: "./"

View file

@ -1,5 +1,7 @@
---
name: Ansible check ubuntu:latest name: Ansible check ubuntu:latest
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check ubuntu:trusty name: Ansible check ubuntu:trusty
# yamllint disable-line rule:truthy
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:

View file

@ -1,16 +0,0 @@
name: Ansible check ubuntu:xenial
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ansible check with ubuntu:xenial
uses: roles-ansible/check-ansible-ubuntu-xenial-action@master
with:
targets: "./"

20
.github/workflows/galaxy.yml vendored Normal file
View file

@ -0,0 +1,20 @@
---
name: Galaxy release
# yamllint disable-line rule:truthy
on:
push:
branches: ['main']
release:
types: ['created']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: galaxy
uses: robertdebock/galaxy-action@1.1.0
with:
galaxy_api_key: ${{ secrets.galaxy_api_key }}

24
.github/workflows/yamllint.yaml vendored Normal file
View file

@ -0,0 +1,24 @@
---
name: 'Yamllint GitHub Actions'
# yamllint disable-line rule:truthy
on:
push:
branches: '*'
pull_request:
branches: '*'
schedule:
- cron: '23 6 * */1 *'
jobs:
yamllint:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'Yamllint'
uses: karancode/yamllint-github-action@master
with:
yamllint_file_or_dir: '.'
yamllint_config_filepath: './.yamllint'

View file

@ -1,29 +0,0 @@
---
# OS Details
os: linux
language: python
python: '3.8'
cache:
pip: true
# Install ansible and ansible-lint
install:
- pip install ansible
- pip install ansible-lint
# testing galaxy install and ansible lint
# more advanced testing is currently handled with
# github actions. The gh-actions for our test are there:
# https://github.com/roles-ansible and are tagged
# with 'github-actions' --> https://github.com/search?q=topic%3Agithub-actions+org%3Aroles-ansible&type=Repositories
script:
- ansible-galaxy install do1jlr.ranger
- ansible-lint .
- echo -e "\n\n\n\n\nWe use github actions for more detailed tests.\n\nMore details about that in our github repo at:\nhttps://github.com/roles-ansible/role-ranger/actions\n\n\n\n\n\n"
notifications:
email:
on_success: never
on_failure: always
webhooks: https://galaxy.ansible.com/api/v1/notifications/

8
.yamllint Normal file
View file

@ -0,0 +1,8 @@
---
extends: default
rules:
# 150 chars should be enough, but don't fail if a line is longer
line-length:
max: 150
level: warning

View file

@ -4,33 +4,19 @@ galaxy_info:
description: Ansible role to install the ranger file manager on linux. ranger is a console file manager with VI key bindings. description: Ansible role to install the ranger file manager on linux. ranger is a console file manager with VI key bindings.
role_name: ranger role_name: ranger
license: MIT license: MIT
min_ansible_version: 2.4 min_ansible_version: 2.8
github_branch: master github_branch: master
platforms: platforms:
- name: Archlinux - name: Archlinux
versions: all versions: all
- name: Debian - name: Debian
versions: versions: all
- sid
- buster
- jessie
- stretch
- name: Ubuntu - name: Ubuntu
versions: versions: all
- xenial
- trusty
- eoan
- bionic
- name: Fedora - name: Fedora
versions: versions: all
- 31
# - 32
# - 33
- name: EL - name: EL
versions: versions: all
- 8
- 7
- 6
galaxy_tags: galaxy_tags:
- ranger - ranger
- filemanager - filemanager

View file

@ -1,7 +1,7 @@
--- ---
- name: Create directory for versionscheck - name: Create directory for versionscheck
become: true become: true
file: ansible.builtin.file:
path: '/etc/.ansible-version' path: '/etc/.ansible-version'
state: directory state: directory
mode: 0755 mode: 0755
@ -9,37 +9,37 @@
- name: check playbook version - name: check playbook version
become: true become: true
slurp: ansible.builtin.slurp:
src: "/etc/.ansible-version/{{ playbook_version_path }}" src: "/etc/.ansible-version/{{ playbook_version_path }}"
register: playbook_version register: playbook_version
when: submodules_versioncheck|bool when: submodules_versioncheck|bool
ignore_errors: yes ignore_errors: true
failed_when: false failed_when: false
- name: Print remote role version - name: Print remote role version
debug: ansible.builtin.debug:
msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}" msg: "Remote role version: {{ playbook_version.content | default('Y3VycmVudGx5IG5vdCBkZXBsb3llZAo=') | b64decode | string }}"
when: submodules_versioncheck|bool when: submodules_versioncheck|bool
- name: Print locale role version - name: Print locale role version
debug: ansible.builtin.debug:
msg: "Local role version: '{{ playbook_version_number|string }}'." msg: "Local role version: '{{ playbook_version_number|string }}'."
when: submodules_versioncheck|bool when: submodules_versioncheck|bool
- name: Check if your version is outdated - name: Check if your version is outdated
fail: ansible.builtin.fail:
msg: "Your ansible module has the version '{{ playbook_version_number }}' and is outdated. You need to update it!" msg: "Your ansible module has the version '{{ playbook_version_number }}' and is outdated. You need to update it!"
when: when:
- playbook_version.content|default("Mgo=")|b64decode|int - 1 >= playbook_version_number|int and submodules_versioncheck|bool - playbook_version.content|default("Mgo=")|b64decode|int - 1 >= playbook_version_number|int and submodules_versioncheck|bool
- name: check if '/etc/ansible-version/' is empty - name: check if '/etc/ansible-version/' is empty
find: ansible.builtin.find:
paths: '/etc/ansible-version/' paths: '/etc/ansible-version/'
register: filesFound register: filesFound
- name: write new version to remote disk - name: write new version to remote disk
become: true become: true
copy: ansible.builtin.copy:
content: "{{ playbook_version_number }}" content: "{{ playbook_version_number }}"
dest: "/etc/.ansible-version/{{ playbook_version_path }}" dest: "/etc/.ansible-version/{{ playbook_version_path }}"
mode: '0644' mode: '0644'

View file

@ -1,6 +1,6 @@
--- ---
# versionscheck # versionscheck
playbook_version_number: 1027 # should be over ninethousand playbook_version_number: 1028 # should be int
playbook_version_path: 'role-ranger_roles-ansible_github.com.version' playbook_version_path: 'role-ranger_roles-ansible_github.com.version'
# variables for ranger # variables for ranger