Skip to content

Update CI files for branch 0.13 #2956

Update CI files for branch 0.13

Update CI files for branch 0.13 #2956

Workflow file for this run

# WARNING: DO NOT EDIT!
#
# This file was generated by plugin_template, and is managed by it. Please use
# './plugin-template --github pulp_ansible' to update this file.
#
# For more info visit https://github.com/pulp/plugin_template
---
name: Ansible CI
on: {pull_request: {branches: ['*']}}
concurrency:
group: ${{ github.ref_name }}-${{ github.workflow }}
cancel-in-progress: true
defaults:
run:
working-directory: "pulp_ansible"
jobs:
ready-to-ship:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
path: "pulp_ansible"
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install requirements
run: pip3 install github
- name: Check commit message
if: github.event_name == 'pull_request'
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