Removed the ability to select md5, sha1, or sha224 as the checksum type #3148
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
# WARNING: DO NOT EDIT! | |
# | |
# This file was generated by plugin_template, and is managed by it. Please use | |
# './plugin-template --github pulp_rpm' to update this file. | |
# | |
# For more info visit https://github.com/pulp/plugin_template | |
--- | |
name: Rpm CI | |
on: {pull_request: {branches: ['*']}} | |
concurrency: | |
group: ${{ github.ref_name }}-${{ github.workflow }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
working-directory: "pulp_rpm" | |
jobs: | |
ready-to-ship: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
path: "pulp_rpm" | |
- 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 | |