fix: install collection requirements in pipeline

This commit is contained in:
s3lph 2025-03-05 22:38:23 +01:00
parent c50db3a5ad
commit 6cc2e5af82
Signed by: s3lph
GPG key ID: 0AA29A52FB33CFB5
4 changed files with 39 additions and 3 deletions

View file

@ -16,8 +16,13 @@ jobs:
- name: Install dependencies
run: |
apt update; apt install --yes python3-pip patch
pip3 install --break-system-packages ansible aar-doc
# Install pipeline dependencies
apt update; apt install --yes python3-pip python3-ruamel.yaml patch
pip3 install --break-system-packages ansible-lint aar-doc
# Install collection dependencies
.forgejo/workflows/requirements.py
ansible-galaxy install -r requirements.yml
rm requirements.yml
- name: Patch aar-doc
run: |

View file

@ -13,8 +13,13 @@ jobs:
- name: Install dependencies
run: |
apt update; apt install --yes python3-pip patch
# Install pipeline dependencies
apt update; apt install --yes python3-pip python3-ruamel.yaml patch
pip3 install --break-system-packages ansible-lint aar-doc
# Install collection dependencies
.forgejo/workflows/requirements.py
ansible-galaxy install -r requirements.yml
rm requirements.yml
- name: Patch aar-doc
run: |

View file

@ -0,0 +1,21 @@
#!/usr/bin/env python3
from ruamel.yaml import YAML
yaml = YAML()
with open('galaxy.yml', 'r') as f:
galaxy = yaml.load(f)
requirements = {
'collections': [
{
'name': name,
'version': version
}
for name, version in galaxy['dependencies'].items()
]
}
with open('requirements.yml', 'w') as f:
yaml.dump(requirements, f)

5
requirements.yml Normal file
View file

@ -0,0 +1,5 @@
collections:
- name: community.podman
version: '>=1.16.2,<2.0.0'
- name: community.postgresql
version: '>=3.10.2,<4.0.0'