-
Notifications
You must be signed in to change notification settings - Fork 36
129 lines (118 loc) · 4.18 KB
/
build.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
name: sigrok-cli Artifact Builder Workflow
on:
push: # When the repo itself has a new commit on the master branch
branches:
- master
tags: # When a new tag was created
workflow_dispatch: # When the workflow was started manually from github
pull_request:
types:
- labeled # When a pull request received a new label (e.g. "provide_binaries")
- synchronize # When a pull request's branch was updated with a new commit
jobs:
create-pending-status:
name: Create pending status
# Run this only for pull requests
if: (github.event == pull_request)
runs-on: ubuntu-latest
steps:
- name: Get PR hash
id: sha
uses: actions/github-script@v7
with:
result-encoding: string
script: |
const { owner, repo, number } = context.issue;
const pr = await github.rest.pulls.get({
owner,
repo,
pull_number: number,
});
return pr.data.head.sha
- name: Create pending status check
uses: actions/github-script@v7
with:
script: |
github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: "${{ steps.sha.outputs.result }}",
state: "pending",
target_url: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
description: "Running",
context: "pr build"
});
update-pending-status-success:
name: Update pending status as 'success'
needs: call-build-workflow
if: |
always() && # Workaround, see https://github.com/actions/runner/issues/491#issuecomment-850884422
(github.event == pull_request) &&
(!contains(needs.*.result, 'cancelled')) &&
(!contains(needs.*.result, 'failure'))
runs-on: ubuntu-latest
steps:
- name: Get PR hash
id: sha
uses: actions/github-script@v7
with:
result-encoding: string
script: |
const { owner, repo, number } = context.issue;
const pr = await github.rest.pulls.get({
owner,
repo,
pull_number: number,
});
return pr.data.head.sha
- name: Update status
uses: actions/github-script@v7
with:
script: |
github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: "${{ steps.sha.outputs.result }}",
state: "success",
target_url: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
description: "Success",
context: "pr build"
});
update-pending-status-failure:
name: Update pending status as 'failure'
needs: call-build-workflow
if: |
always() && # Workaround, see https://github.com/actions/runner/issues/491#issuecomment-850884422
(github.event == pull_request) &&
(contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'failure'))
runs-on: ubuntu-latest
steps:
- name: Get PR hash
id: sha
uses: actions/github-script@v7
with:
result-encoding: string
script: |
const { owner, repo, number } = context.issue;
const pr = await github.rest.pulls.get({
owner,
repo,
pull_number: number,
});
return pr.data.head.sha
- name: Update status
uses: actions/github-script@v7
with:
script: |
github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: "${{ steps.sha.outputs.result }}",
state: "failure",
target_url: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
description: "Failure",
context: "pr build"
});
call-build-workflow:
name: Sigrok artifact builder
uses: sigrokproject/sigrok-build/.github/workflows/build.yml@master