-
Notifications
You must be signed in to change notification settings - Fork 6
250 lines (213 loc) · 9.42 KB
/
check.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
name: Check Set-Up & Build
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
CRATE:
description: "Which crate do you want to test?"
required: false
default: "pallet-funding"
type: string
issue_comment:
types: [created]
env:
RUSTFLAGS: "" # To ovveride the default "-D warnings" that can be too tedious.
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
fmt:
if: (github.event_name == 'issue_comment' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/bot fmt')) || github.event_name == 'workflow_dispatch'
# The type of runner that the job will run on
runs-on: ubuntu-22.04
container:
image: paritytech/ci-linux:production
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set commit status as pending
uses: myrotvorets/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: pending
context: Checking formatting
- name: Install Rust
# Force Rust Nightly to check the formatting
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false
- name: Check the formatting
run: cargo +nightly fmt --all --check
- name: Add comment to PR
uses: actions/github-script@v6
if: always()
with:
script: |
const name = '${{ github.job }}';
const url = '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}';
const success = '${{ job.status }}' === 'success';
const body = `${name}: ${success ? 'Succeeded! ✅' : 'Failed ❌'}\n${url}`;
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: body
})
- name: Set final commit status
uses: myrotvorets/[email protected]
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
context: Checking formatting
test:
if: (github.event_name == 'issue_comment' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/bot test')) || github.event_name == 'workflow_dispatch'
# The type of runner that the job will run on
runs-on: ubuntu-22.04
container:
image: paritytech/ci-linux:production
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set commit status as pending
uses: myrotvorets/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: pending
context: Running tests
- name: Sets env vars for NOT integration-tests (if from workflow_dispatch)
run: |
echo "SKIP_WASM_BUILD=1" >> "$GITHUB_ENV"
if: github.event_name == 'workflow_dispatch' && !contains(github.event.inputs.CRATE, 'integration-tests')
- name: Set Body var
run: echo "BODY=${{ github.event.comment.body }}" >> "$GITHUB_ENV"
if: github.event_name == 'issue_comment'
- name: Extract from BODY
run: |
extracted_value="${BODY#*test }"
echo "EXTRACTED_VALUE=$extracted_value" >> "$GITHUB_ENV"
if: github.event_name == 'issue_comment'
- name: Determine Crate Name
id: crate_name
run: echo "CRATE_NAME=${{ env.EXTRACTED_VALUE }}" >> $GITHUB_OUTPUT
if: github.event_name == 'issue_comment'
- name: Sets env vars for NOT integration-tests (if from issue_comment)
run: |
echo "SKIP_WASM_BUILD=1" >> "$GITHUB_ENV"
if: github.event_name == 'issue_comment' && !contains(steps.crate_name.outputs.CRATE_NAME, 'integration-tests')
- name: Install Rust
# Using the version specified in the rust-toolchain.toml
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false
if: ${{ env.ACT }}
- name: Install Rust
# Using the version specified in the rust-toolchain.toml
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: true
if: ${{ !env.ACT }}
- name: Test the Parachain (if from issue_comment)
run: cargo test -p '${{ steps.crate_name.outputs.CRATE_NAME }}' --locked
if: github.event_name == 'issue_comment'
- name: Test the Parachain (if from workflow_dispatch)
run: cargo test -p '${{ github.event.inputs.CRATE }}' --locked
if: github.event_name == 'workflow_dispatch'
- name: Add comment to PR
uses: actions/github-script@v6
if: always()
with:
script: |
const name = '${{ github.job }}';
const url = '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}';
const success = '${{ job.status }}' === 'success';
const body = `${name}: ${success ? 'Succeeded! ✅' : 'Failed ❌'}\n${url}`;
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: body
})
- name: Set final commit status
uses: myrotvorets/[email protected]
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
context: Running tests
benchmark:
if: (github.event_name == 'issue_comment' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/bot benchmark')) || github.event_name == 'workflow_dispatch'
# The type of runner that the job will run on
runs-on: ubuntu-22.04
container:
image: paritytech/ci-linux:production
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set commit status as pending
uses: myrotvorets/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: pending
context: Running benchmarks tests
- name: Sets env vars for NOT integration-tests (if from workflow_dispatch)
run: |
echo "SKIP_WASM_BUILD=1" >> "$GITHUB_ENV"
if: github.event_name == 'workflow_dispatch' && !contains(github.event.inputs.CRATE, 'integration-tests')
- name: Set Body var
run: echo "BODY=${{ github.event.comment.body }}" >> "$GITHUB_ENV"
if: github.event_name == 'issue_comment'
- name: Extract from BODY
run: |
extracted_value="${BODY#*benchmark }"
echo "EXTRACTED_VALUE=$extracted_value" >> "$GITHUB_ENV"
if: github.event_name == 'issue_comment'
- name: Determine Crate Name
id: crate_name
run: echo "CRATE_NAME=${{ env.EXTRACTED_VALUE }}" >> $GITHUB_OUTPUT
if: github.event_name == 'issue_comment'
- name: Sets env vars for NOT integration-tests (if from issue_comment)
run: |
echo "SKIP_WASM_BUILD=1" >> "$GITHUB_ENV"
if: github.event_name == 'issue_comment' && !contains(steps.crate_name.outputs.CRATE_NAME, 'integration-tests')
- name: Install Rust
# Using the version specified in the rust-toolchain.toml
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false
if: ${{ env.ACT }}
- name: Install Rust
# Using the version specified in the rust-toolchain.toml
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: true
if: ${{ !env.ACT }}
- name: Test the Benchmarks (if from issue_comment)
run: cargo test --features=runtime-benchmarks -p '${{ steps.crate_name.outputs.CRATE_NAME }}' --locked benchmark_tests
if: github.event_name == 'issue_comment'
- name: Test the Benchmarks (if from workflow_dispatch)
run: cargo test --features=runtime-benchmarks -p '${{ github.event.inputs.CRATE }}' --locked benchmark_tests
if: github.event_name == 'workflow_dispatch'
- name: Add comment to PR
uses: actions/github-script@v6
if: always()
with:
script: |
const name = '${{ github.job }}';
const url = '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}';
const success = '${{ job.status }}' === 'success';
const body = `${name}: ${success ? 'Succeeded! ✅' : 'Failed ❌'}\n${url}`;
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: body
})
- name: Set final commit status
uses: myrotvorets/set-commit-status-action@master
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
context: Running benchmarks tests