Compare commits

..

No commits in common. "a42cd308bc5e19037185a00785250607378de34d" and "3fc8e359cea17418aa6776c0ff83c8293d8f1daa" have entirely different histories.

3 changed files with 16 additions and 13 deletions

View File

@ -1,2 +1,5 @@
skip_list: skip_list:
- yaml[colons]
- yaml[empty-lines]
- yaml[line-length]
- no-changed-when - no-changed-when

View File

@ -7,22 +7,22 @@ on:
jobs: jobs:
Ansible-Development-Pipeline: Ansible-Development-Pipeline:
runs-on: ansible-dev-centos9 strategy:
matrix:
os: [ ansible-dev-centos9, ansible-dev-fedora39, ansible-dev-debian12 ]
runs-on: ${{ matrix.os }}
steps: steps:
- name: Clone repository - name: Clone repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Ansible Environment Verify - name: Ansible Environment Verify
run: | run: |
echo "BUILD HOST: $(cat /etc/hostname)" && echo whoami
echo "BUILD USER: $(whoami)" && echo . ./.ci.env
echo "PWD: $(pwd)" && echo env
lscpu && echo git log -1
. ./.ci.env && echo ansible --version
env && echo ansible-lint --version
git log -1 && echo
ansible --version && echo
ansible-lint --version --offline && echo
- name: Install Ansible Galaxy Dependencies - name: Install Ansible Galaxy Dependencies
run: | run: |

View File

@ -6,7 +6,7 @@
vars: vars:
__gitea_version: 1.22.6 __gitea_version: 1.22.5
__gitea_arch: amd64 __gitea_arch: amd64
__gitea_binary: "https://dl.gitea.io/gitea/{{ __gitea_version }}/\ __gitea_binary: "https://dl.gitea.io/gitea/{{ __gitea_version }}/\
gitea-{{ __gitea_version }}-linux-{{ __gitea_arch }}" gitea-{{ __gitea_version }}-linux-{{ __gitea_arch }}"
@ -31,7 +31,7 @@
register: r_check_gitea register: r_check_gitea
- name: Fetch Gitea binary and notify user - name: Fetch Gitea binary and notify user
when: when :
- (r_check_gitea.rc == 1 or r_check_gitea.stdout is not search(__gitea_version)) - (r_check_gitea.rc == 1 or r_check_gitea.stdout is not search(__gitea_version))
block: block:
- name: Gitea binary not found or version mismatch - name: Gitea binary not found or version mismatch
@ -39,7 +39,7 @@
msg: "Gitea binary not found or version mismatch." msg: "Gitea binary not found or version mismatch."
- name: "Fetch Gitea {{ __gitea_version }}" - name: "Fetch Gitea {{ __gitea_version }}"
ansible.builtin.get_url: ansible.builtin.get_url :
url: "{{ __gitea_binary }}" url: "{{ __gitea_binary }}"
dest: /usr/local/bin/gitea dest: /usr/local/bin/gitea
mode: "0755" mode: "0755"