Account for multi-plugin repositories #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test bootstrapping a plugin | |
on: | |
pull_request: | |
branches: | |
- '*' | |
concurrency: | |
group: ${{ github.ref_name }}-${{ github.workflow }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
working-directory: "pulp_catdog" | |
jobs: | |
ready-to-ship: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: "plugin_template" | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- name: "Bootstrap catdog plugin" | |
working-directory: "plugin_template" | |
run: | | |
.ci/bootstrap_catdog.sh | |
# Below this line we include the steps of the ci workflow of the generated plugin | |
- name: Install requirements | |
run: pip3 install github | |
- name: Check commit message | |
# This will fail for our fake plugin | |
if: false | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_CONTEXT: ${{ github.event.pull_request.commits_url }} | |
run: sh .github/workflows/scripts/check_commit.sh | |
- name: Verify requirements files | |
run: python .ci/scripts/check_requirements.py | |
lint: | |
uses: "./.github/workflows/lint.yml" | |
build: | |
needs: lint | |
uses: "./.github/workflows/build.yml" | |
test: | |
needs: build | |
uses: "./.github/workflows/test.yml" | |
deprecations: | |
defaults: | |
run: | |
working-directory: "." | |
runs-on: ubuntu-latest | |
if: github.base_ref == 'main' | |
needs: test | |
steps: | |
- name: Fail on deprecations | |
run: | | |
test -z "${{ needs.test.outputs.deprecations-pulp }}" | |
test -z "${{ needs.test.outputs.deprecations-azure }}" | |
test -z "${{ needs.test.outputs.deprecations-s3 }}" | |
test -z "${{ needs.test.outputs.deprecations-lowerbounds }}" | |
- name: Print deprecations | |
if: failure() | |
run: | | |
echo "${{ needs.test.outputs.deprecations-pulp }}" | base64 -d | |
echo "${{ needs.test.outputs.deprecations-azure }}" | base64 -d | |
echo "${{ needs.test.outputs.deprecations-s3 }}" | base64 -d | |
echo "${{ needs.test.outputs.deprecations-lowerbounds }}" | base64 -d | |