-
Notifications
You must be signed in to change notification settings - Fork 594
86 lines (76 loc) · 2.43 KB
/
pr_checks.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: PR checks
run-name: PR checks, branch:${{ github.ref_name }}, triggered by @${{ github.actor }}
concurrency:
# Run only for most recent commit in PRs but for all tags and commits on main
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
on:
pull_request:
branches:
- '**'
push:
branches:
- 'main'
- 'release/[0-9]+.[0-9]+.x'
tags:
- '**'
workflow_dispatch: {}
jobs:
# This job is used to check if the secrets are available. If they are not, we'll skip jobs that require them.
should-run-with-secrets:
runs-on: ubuntu-latest
outputs:
result: ${{ steps.check.outputs.result }}
steps:
- name: Check if secrets are available
id: check
run: |
if [ "${{ secrets.PULP_PASSWORD }}" == "" ]; then
echo "result=false" >> $GITHUB_OUTPUT
else
echo "result=true" >> $GITHUB_OUTPUT
fi
linters:
uses: ./.github/workflows/_linters.yaml
secrets: inherit
unit-tests:
uses: ./.github/workflows/_unit_tests.yaml
secrets: inherit
integration-tests:
needs: should-run-with-secrets
if: ${{ needs.should-run-with-secrets.outputs.result == 'true' }}
uses: ./.github/workflows/_integration_tests.yaml
secrets: inherit
conformance-tests:
uses: ./.github/workflows/_conformance_tests.yaml
secrets: inherit
build-docker-image:
uses: ./.github/workflows/_docker_build.yaml
secrets: inherit
# We need this step to fail the workflow if any of the previous steps failed or were cancelled.
# It allows to use this particular job as a required check for PRs.
# Ref: https://github.com/orgs/community/discussions/26822#discussioncomment-3305794
passed:
runs-on: ubuntu-latest
needs:
- linters
- unit-tests
- integration-tests
- conformance-tests
- build-docker-image
if: always()
steps:
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
run: |
echo "Some jobs failed or were cancelled."
exit 1
test-reports:
needs:
- should-run-with-secrets
- unit-tests
- integration-tests
- conformance-tests
if: ${{ needs.should-run-with-secrets.outputs.result == 'true' }}
uses: ./.github/workflows/_test_reports.yaml
secrets: inherit