-
Notifications
You must be signed in to change notification settings - Fork 13
146 lines (125 loc) · 4.79 KB
/
wildfly-pull-request-runner.yml
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
name: Run Tests for PR
env:
TOKEN: ${{ secrets.CLOUD_TESTS_REMOTE_DISPATCH_TOKEN }}
TRIGGER_REPOSITORY: ${{ github.event.client_payload.triggerRepo }}
PR_HEAD_SHA: ${{ github.event.client_payload.prHeadSha }}
on:
workflow_dispatch:
repository_dispatch:
types: [trigger-cloud-tests-pr]
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.client_payload.triggerRepo }}#${{ github.event.client_payload.pr }}'
cancel-in-progress: true
jobs:
report-in-progress:
permissions:
contents: write
runs-on: ubuntu-latest
env:
REPORTER_EVENT_TYPE: report-cloud-tests-pr-pending
steps:
- name: Output
env:
MESSAGE: ${{ toJSON(github.event.client_payload) }}
run: echo $MESSAGE
- name: Report Progress
if: ${{ env.TOKEN }}
run: |
STATUS="pending"
RUN_URL="https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
DESC="Running Tests"
CLIENT_PAYLOAD=$( jq -n \
--arg prHeadSha "$PR_HEAD_SHA" \
--arg state "$STATUS" \
--arg runUrl "$RUN_URL" \
--arg desc "$DESC" \
'{prHeadSha: $prHeadSha, state: $state, runUrl: $runUrl, desc: $desc}' )
echo "CLIENT_PAYLOAD: $CLIENT_PAYLOAD"
set -x
resp=$(curl -X POST -s "https://api.github.com/repos/${TRIGGER_REPOSITORY}/dispatches" \
-H "Accept: application/vnd.github.v3+json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${TOKEN}" \
-d "{\"event_type\": \"${REPORTER_EVENT_TYPE}\", \"client_payload\": ${CLIENT_PAYLOAD} }")
set +x
if [ -z "$resp" ]
then
sleep 2
else
echo "Workflow failed to trigger"
echo "$resp"
exit 1
fi
# kubernetes-jdk11:
# uses: ./.github/workflows/wildfly-cloud-tests-callable.yml
# with:
# runtimeImage: quay.io/wildfly/wildfly-runtime:latest-jdk11
# type: Kubernetes
kubernetes-jdk17:
uses: ./.github/workflows/wildfly-cloud-tests-callable.yml
with:
runtimeImage: quay.io/wildfly/wildfly-runtime:latest-jdk17
type: Kubernetes
kubernetes-jdk21:
uses: ./.github/workflows/wildfly-cloud-tests-callable.yml
with:
runtimeImage: quay.io/wildfly/wildfly-runtime:latest-jdk21
type: Kubernetes
reporter-completed:
needs: [ kubernetes-jdk17, kubernetes-jdk21 ]
if: ${{ always() }}
permissions:
contents: write
runs-on: ubuntu-latest
env:
REPORTER_EVENT_TYPE: report-cloud-tests-pr-complete
steps:
- name: Output
env:
#MESSAGE: ${{ github.event.client_payload.message }}
MESSAGE: ${{ toJSON(github.event.client_payload) }}
run: echo $MESSAGE
- name: Check Jobs
run: |
echo "${{ toJSON(needs) }}"
if [[ ${{ needs.kubernetes-jdk17.outputs.status }} == "1" ]]; then
exit 1
fi
if [[ ${{ needs.kubernetes-jdk21.outputs.status }} == "1" ]]; then
exit 1
fi
- name: Remote Dispatch to report job complete
if: ${{ env.TOKEN }} && ${{ always() }}
run: |
STATUS=${{ job.status }}
if [ "${STATUS}" == "success" ]; then
TEXT="The job passed!"
else
# The statuses API doesn't have a 'cancelled' status, just error, failure, pending and success
# So treat everything that is not a success as a failure
STATUS="failure"
TEXT="The job failed, or was cancelled"
fi
echo $GITHUB_REPOSITORY
RUN_URL="https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
DESC="Running Tests"
CLIENT_PAYLOAD=$( jq -n \
--arg prHeadSha "$PR_HEAD_SHA" \
--arg state "$STATUS" \
--arg runUrl "$RUN_URL" \
--arg desc "$TEXT" \
'{prHeadSha: $prHeadSha, state: $state, runUrl: $runUrl, desc: $desc}' )
echo "CLIENT_PAYLOAD: $CLIENT_PAYLOAD"
resp=$(curl -X POST -s "https://api.github.com/repos/${TRIGGER_REPOSITORY}/dispatches" \
-H "Accept: application/vnd.github.v3+json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${TOKEN}" \
-d "{\"event_type\": \"${REPORTER_EVENT_TYPE}\", \"client_payload\": ${CLIENT_PAYLOAD} }")
if [ -z "$resp" ]
then
sleep 2
else
echo "Workflow failed to trigger"
echo "$resp"
exit 1
fi