diff --git a/.github/workflows/import-galaxy.yml b/.github/workflows/import-galaxy.yml index f87422a..d5bcb5b 100644 --- a/.github/workflows/import-galaxy.yml +++ b/.github/workflows/import-galaxy.yml @@ -1,16 +1,17 @@ +--- +# Copyright (c) Ansible Project +# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) +# SPDX-License-Identifier: GPL-3.0-or-later + name: import-galaxy -on: +'on': # Run CI against all pushes (direct commits, also merged PRs) to main, and all Pull Requests push: branches: - main + - stable-* pull_request: -env: - # Adjust this to your collection - NAMESPACE: felixfontein - COLLECTION_NAME: playground - jobs: build-collection: name: Build collection artifact @@ -24,23 +25,46 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.12' - - name: Install ansible-core + - name: Install ansible-core devel run: pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check - name: Make sure galaxy.yml has version entry - run: >- - python -c - 'import yaml ; - f = open("galaxy.yml", "rb") ; - data = yaml.safe_load(f) ; - f.close() ; - data["version"] = data.get("version") or "0.0.1" ; - f = open("galaxy.yml", "wb") ; - f.write(yaml.dump(data).encode("utf-8")) ; - f.close() ; - ' + shell: python + id: collection-metadata + run: | + import os + import yaml + + def set_output(name, value): + with open(os.environ['GITHUB_OUTPUT'], 'a', encoding='utf-8') as f: + f.write(f'{name}={value}{os.linesep}') + + # Make sure galaxy.yml contains a version + with open('galaxy.yml', 'rb') as f: + data = yaml.safe_load(f) ; + data['version'] = data.get('version') or '0.0.1' + with open('galaxy.yml', 'w', encoding='utf-8') as f: + f.write(yaml.dump(data)) + + # Create Galaxy requirements file + if data.get('dependencies'): + reqs = dict(collections=[]) + for collection, version in sorted(data['dependencies'].items()): + reqs['collections'].append(dict( + name=collection, + source='https://galaxy.ansible.com', + version=version, + )) + with open('../requirements.yml', 'w', encoding='utf-8') as f: + f.write(yaml.dump(reqs)) + + # Extract namespace and collection name + set_output('name', data['name']) + set_output('namespace', data['namespace']) + set_output('version', data['version']) + set_output('filename', f"{data['namespace']}-{data['name']}-{data['version']}.tar.gz") working-directory: ./checkout - name: Build collection @@ -48,12 +72,19 @@ jobs: working-directory: ./checkout - name: Copy artifact into subdirectory - run: mkdir ./artifact && mv ./checkout/${{ env.NAMESPACE }}-${{ env.COLLECTION_NAME }}-*.tar.gz ./artifact + shell: bash + run: | + set -e + mkdir artifact + mv checkout/${{ steps.collection-metadata.outputs.filename }} artifact/ + if [ -f requirements.yml ]; then + mv requirements.yml artifact/ + fi - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: ${{ env.NAMESPACE }}-${{ env.COLLECTION_NAME }}-${{ github.sha }} + name: collection-build-${{ github.sha }} path: ./artifact/ import-galaxy: @@ -65,9 +96,12 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: + # Currently requirements-parser is incompatible with Python 3.12 + # (https://github.com/madpah/requirements-parser/issues/88), so we + # have to stick to Python 3.11 for now... python-version: '3.11' - - name: Install ansible-core + - name: Install ansible-core devel run: pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check - name: Install galaxy-importer @@ -76,7 +110,21 @@ jobs: - name: Download artifact uses: actions/download-artifact@v4 with: - name: ${{ env.NAMESPACE }}-${{ env.COLLECTION_NAME }}-${{ github.sha }} + name: collection-build-${{ github.sha }} + + - name: List files + shell: bash + run: | + ls -la + + - name: Install collection dependencies + shell: bash + run: | + if [ -f requirements.yml ]; then + ansible-galaxy collection install --pre --requirements-file requirements.yml + else + echo "Collection has no dependencies." + fi - name: Run Galaxy importer - run: python -m galaxy_importer.main ${{ env.NAMESPACE }}-${{ env.COLLECTION_NAME }}-*.tar.gz + run: python -m galaxy_importer.main *-*-*.tar.gz