forked from leanprover-community/lean-update
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
467 lines (434 loc) · 19.7 KB
/
Copy pathaction.yml
File metadata and controls
467 lines (434 loc) · 19.7 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
name: "Lean update"
description: "Attempts to update lean and dependencies of a lean project"
author: "Oliver Butterley, Asei Inoue(Seasawher)"
inputs:
# ----------------------------- #
# general configuration options #
# ----------------------------- #
lake_package_directory:
description: |
The directory containing the Lake package to update, relative to the workspace.
Accepts a comma- or space-separated list of directories, and an entry ending in `/*`
expands to every immediate subdirectory containing a lakefile, so a repository of sibling
packages can be updated in one invocation (e.g. `templates/*`). With multiple directories
the outputs aggregate: an update or failure in any directory reports as such, and the
Mathlib cache prefetch (which understands a single directory) is skipped.
This parameter is passed to the lake-package-directory argument of leanprover/lean-action.
required: false
default: "."
# -------------------------------- #
# fetching the latest Lean release #
# -------------------------------- #
update_lean_toolchain:
description: |
Controls whether to update the lean-toolchain file for projects with no dependencies.
Allowed values:
* `auto`: Update the lean-toolchain file to the latest release (default behavior)
* `never`: Do not update the lean-toolchain file
Default: `auto`
required: false
default: "auto"
release_kind_to_fetch:
description: |
The kind of the latest Lean release to fetch.
This parameter is used only for Lean, not used for fetching other lake dependencies.
Allowed values:
* `nightly`: fetch the latest nightly release
* `tagged`: fetch the latest tagged release (including both stable and pre-releases)
required: false
default: "tagged"
release_channel:
description: |
Which tagged release channel to track. Only meaningful when `release_kind_to_fetch` is `tagged`.
Allowed values:
* `stable`: track only the latest stable (non pre-release) tagged release (default)
* `rc`: track the latest tagged release, including release candidates
An update lands as a pull request against someone's repository, so moving onto a release
candidate is opt-in.
required: false
default: "stable"
bump_mode:
description: |
How to advance dependencies.
Allowed values:
* `lake-update`: run `lake update` to advance dependencies (the upstream behavior).
* `pinned-tags`: bump `lean-toolchain` to the latest Lean version tag, moving the pinned
`rev` of managed git dependencies with it. A dependency that has not tagged that version
yet keeps its pin and is reported; post-update validation decides whether the result
builds. Use this when dependencies are pinned to Lean-version tags (e.g. `v4.31.0`)
rather than tracking a branch.
Default: `lake-update`
required: false
default: "lake-update"
pinned_deps:
description: |
Only used when `bump_mode` is `pinned-tags`. A comma- or space-separated list of git
dependency names whose pinned `rev` should be bumped. An empty value means every git
`require` in the lakefile pinned to a Lean version tag; a dependency pinned to a commit hash
or a branch is reported and left alone, since rewriting it would silently discard the pin.
Naming it here opts it back in. Both `lakefile.toml` and `lakefile.lean` are supported.
required: false
default: ""
# ----------------------------------------- #
# run `lake update` and run build/test/lint #
# ----------------------------------------- #
legacy_update:
description: |
If set to `true`, executes `lake -R -Kenv=dev update` instead of `lake update`.
Allowed values:
* `true`: Execute `lake -R -Kenv=dev update`
* `false`: Execute `lake update`
Default: `false`
required: false
default: "false"
build_args:
description: |
Build arguments to pass to `lake build` during post-update validation.
required: false
default: "--log-level=warning"
validate:
description: |
Whether to run post-update validation (`lake build`, and `lake test`/`lake lint` when
drivers exist) after an update: `true` or `false`.
When unset, defaults to `false` if both `on_update_succeeds` and `on_update_fails` are
`pr` — the same PR opens on either outcome and that PR's own CI is the authority on
whether the update builds, so validation would rebuild the whole package (and its
dependencies, uncached) only to produce a verdict nothing consumes — and `true`
otherwise. Note the `commit` and `issue` outcomes require a real validation verdict and
will not fire with `validate: false`.
When validation is skipped and an update occurred, `result` reports `update-unvalidated`.
required: false
default: ""
# ------------------------- #
# commit or notify the user #
# ------------------------- #
pr:
description: |
When `true`, always open a pull request for an update, whatever the validation outcome:
shorthand for setting both `on_update_succeeds` and `on_update_fails` to `pr`, taking
precedence over both. With it, validation is skipped by default (see `validate`), since
the PR's own CI is the authority on whether the update builds.
required: false
default: ""
on_update_succeeds:
description: |
What to do when an update is available and post-update validation is successful.
Allowed values:
* `silent`: Do nothing
* `commit`: directly commit the updated files
* `issue`: notify the user by creating an issue. No new issue will be created if one already exists.
* `pr`: notify the user by creating a pull request. No new PR will be created if one already exists.
Default: `pr`.
required: false
default: "pr"
on_update_fails:
description: |
What to do when an update is available and post-update validation fails.
Allowed values:
* `silent`: Do nothing
* `issue`: notify the user by creating an issue. No new issue will be created if one already exists.
* `pr`: open a pull request anyway. Use this to review the bump even when the build fails.
* `fail`: fail the action.
Default: `issue`.
required: false
default: "issue"
update_if_modified:
description: |
Specifies which files, when updated during `lake update`, will cause the action to update code or notify the user.
This option does not affect the behavior when post-update validation fails after `lake update`.
Allowed values:
* `lean-toolchain`:
If `lean-toolchain` is specified, this GitHub Action will skip updates unless the Lean version is updated.
Here, "skipping updates" means "not attempting to update code or send notifications when post-update validation succeeds after lake update".
* `lake-manifest.json`: if `lake-manifest.json` is specified, this GitHub Action will perform an update if any dependent package is updated.
Default: `lake-manifest.json`
required: false
default: "lake-manifest.json"
token:
description: |
A Github token to be used for committing
required: false
default: ${{ github.token }}
outputs:
has_dependency:
description: |
This value is `true` or `false` depending on whether the lake package has dependencies.
value: ${{ steps.find-dependencies.outputs.has_dependency }}
result:
description: |
The action outputs `no-update`, `update-success` or `update-fail` depending on the three possible scenarios.
Description of each value:
* `no-update`: No update was available.
* `update-success`: An update was available and post-update validation was successful.
* `update-fail`: An update was available but post-update validation failed.
* `update-unvalidated`: An update was available and validation was skipped (see `validate`).
value: ${{ steps.record-result.outputs.outcome }}
latest_lean:
description: |
The latest Lean release version, including both stable and pre-release versions.
This value could be also nightly.
## Note
* This is not necessarily matching to the updated content of the lean-toolchain file of the lake package.
However, in `pinned-tags` bump mode an applied update always moves `lean-toolchain` to exactly
this release, so workflows can read the resulting version from this output.
* This value is fetched according to the `release_kind_to_fetch` option.
value: ${{ steps.update-lean-toolchain.outputs.latest_lean || steps.bump-pinned.outputs.latest_lean }}
notify:
description: |
Indicates whether there is an event worth notifying the user about.
Returns `true` in the following cases:
* When updates are available and post-update validation succeeds. However, if `update_if_modified` is set to `lean-toolchain`, this is only true when the Lean version has been updated.
* When updates are available and post-update validation fails.
Returns `false` in all other cases.
value: ${{ steps.record-notify.outputs.notify }}
runs:
using: "composite"
steps:
# `pr: true` collapses the per-outcome settings; every later condition
# reads the normalized values so the two forms cannot disagree.
- name: Resolve update outcomes
id: outcomes
run: |
: Resolve update outcomes
succ="$ON_SUCCESS"
fail="$ON_FAILURE"
if [ "$PR" = "true" ]; then
succ=pr
fail=pr
fi
echo "on-success=$succ" | tee -a "$GITHUB_OUTPUT"
echo "on-failure=$fail" | tee -a "$GITHUB_OUTPUT"
shell: bash
env:
PR: ${{ inputs.pr }}
ON_SUCCESS: ${{ inputs.on_update_succeeds }}
ON_FAILURE: ${{ inputs.on_update_fails }}
- name: Install elan
run: |
: Install elan
curl https://elan.lean-lang.org/elan-init.sh -sSf | sh -s -- -y
echo "$HOME/.elan/bin" >> $GITHUB_PATH
shell: bash
- name: read lake-manifest.json and find dependencies
id: find-dependencies
run: |
lake exe leanUpdate findDependencies
shell: bash
working-directory: ${{ github.action_path }}
env:
LAKE_PACKAGE_DIRECTORY: ${{ inputs.lake_package_directory }}
- name: Update lean-toolchain file
if: inputs.bump_mode == 'lake-update'
id: update-lean-toolchain
run: |
: Update lean-toolchain file
lake exe leanUpdate updateLeanToolchain
shell: bash
working-directory: ${{ github.action_path }}
env:
GH_TOKEN: ${{ github.token }}
LAKE_PACKAGE_DIRECTORY: ${{ inputs.lake_package_directory }}
RELEASE_KIND_TO_FETCH: ${{ inputs.release_kind_to_fetch }}
RELEASE_CHANNEL: ${{ inputs.release_channel }}
UPDATE_LEAN_TOOLCHAIN: ${{ inputs.update_lean_toolchain }}
- name: Update dependencies of ${{ github.repository }}
if: inputs.bump_mode == 'lake-update'
run: |
: Update dependencies
lake exe leanUpdate updateDependencies
shell: bash
working-directory: ${{ github.action_path }}
env:
LAKE_PACKAGE_DIRECTORY: ${{ inputs.lake_package_directory }}
LEGACY_UPDATE: ${{ inputs.legacy_update }}
- name: Bump pinned dependency tags and lean-toolchain in lockstep
if: inputs.bump_mode == 'pinned-tags'
id: bump-pinned
run: |
: Bump pinned dependency tags
lake exe leanUpdate bumpPinnedTags
shell: bash
working-directory: ${{ github.action_path }}
env:
GH_TOKEN: ${{ github.token }}
LAKE_PACKAGE_DIRECTORY: ${{ inputs.lake_package_directory }}
RELEASE_KIND_TO_FETCH: ${{ inputs.release_kind_to_fetch }}
RELEASE_CHANNEL: ${{ inputs.release_channel }}
PINNED_DEPS: ${{ inputs.pinned_deps }}
- name: Check if lean-toolchain or lake-manifest.json were updated
run: |
lake exe leanUpdate checkChanges
env:
LAKE_PACKAGE_DIRECTORY: ${{ inputs.lake_package_directory }}
UPDATE_IF_MODIFIED: ${{ inputs.update_if_modified }}
shell: bash
working-directory: ${{ github.action_path }}
- name: Decide whether to validate
id: validation-mode
run: |
: Decide whether to validate
if [ "$VALIDATE" = "false" ]; then
run=false
elif [ "$VALIDATE" = "true" ]; then
run=true
elif [ "$ON_SUCCESS" = "pr" ] && [ "$ON_FAILURE" = "pr" ]; then
echo "Both outcomes open a PR, whose own CI is the authority; skipping validation"
run=false
else
run=true
fi
echo "run=$run" | tee -a "$GITHUB_OUTPUT"
shell: bash
env:
VALIDATE: ${{ inputs.validate }}
ON_SUCCESS: ${{ steps.outcomes.outputs.on-success }}
ON_FAILURE: ${{ steps.outcomes.outputs.on-failure }}
- name: Prepare Lean and get Mathlib cache
if: steps.validation-mode.outputs.run == 'true' && env.LEAN_UPDATE_FILES_CHANGED == 'true'
id: prepare-lean
continue-on-error: true
uses: leanprover/lean-action@v1
with:
auto-config: "false"
build: "false"
test: "false"
lint: "false"
use-github-cache: "false"
lake-package-directory: ${{ inputs.lake_package_directory }}
env:
GH_TOKEN: ${{ github.token }}
- name: Validate updated Lean package
if: steps.validation-mode.outputs.run == 'true' && env.LEAN_UPDATE_FILES_CHANGED == 'true'
id: validate-update
continue-on-error: true
run: |
: Validate updated Lean package
lake exe leanUpdate validateUpdate
env:
BUILD_ARGS: ${{ inputs.build_args }}
LAKE_PACKAGE_DIRECTORY: ${{ inputs.lake_package_directory }}
shell: bash
working-directory: ${{ github.action_path }}
# -------------------------------- #
# record the output of this action #
# -------------------------------- #
- name: Record the outcome
id: record-result
run: |
: Record the outcome
if [ "${{ env.LEAN_UPDATE_FILES_CHANGED }}" == "false" ]; then
echo "No update available"
echo "outcome=no-update" >> $GITHUB_OUTPUT
elif [ "${{ steps.validate-update.outcome }}" == "success" ]; then
echo "Update available and validation successful"
echo "outcome=update-success" >> $GITHUB_OUTPUT
elif [ "${{ steps.validate-update.outcome }}" == "failure" ]; then
echo "Update available but validation fails"
echo "outcome=update-fail" >> $GITHUB_OUTPUT
elif [ "${{ steps.validate-update.outcome }}" == "skipped" ]; then
echo "Update available; validation skipped"
echo "outcome=update-unvalidated" >> $GITHUB_OUTPUT
fi
shell: bash
- name: Record the notify status
id: record-notify
run: |
: Record the notify status
if [ "${{ env.LEAN_UPDATE_FILES_CHANGED }}" == "false" ]; then
echo "No updates available, no need to notify"
echo "notify=false" >> $GITHUB_OUTPUT
elif [ "${{ steps.validate-update.outcome }}" == "success" ] && [ "${{ env.LEAN_UPDATE_DO_UPDATE }}" == "true" ]; then
echo "Updates available and validation successful - should notify"
echo "notify=true" >> $GITHUB_OUTPUT
elif [ "${{ steps.validate-update.outcome }}" == "failure" ]; then
echo "Updates available but validation failed - should notify"
echo "notify=true" >> $GITHUB_OUTPUT
elif [ "${{ steps.validate-update.outcome }}" == "skipped" ] && [ "${{ env.LEAN_UPDATE_DO_UPDATE }}" == "true" ]; then
echo "Updates available with validation skipped - should notify"
echo "notify=true" >> $GITHUB_OUTPUT
else
echo "No need to notify in this case"
echo "notify=false" >> $GITHUB_OUTPUT
fi
shell: bash
# ------------------------- #
# when update is successful #
# ------------------------- #
# An open PR for this release is left untouched: it may carry review
# fixes, and create-pull-request would force-push them away.
- name: Check for an open update PR
id: existing-pr
run: |
: Check for an open update PR
echo "open=$(gh pr list --repo "$GITHUB_REPOSITORY" --head "update/lean-$LEAN_UPDATE_LATEST_LEAN" --state open --json number --jq length)" | tee -a "$GITHUB_OUTPUT"
shell: bash
env:
GH_TOKEN: ${{ inputs.token }}
# One PR step for both outcomes: whether the update built is the PR's own
# CI's job to report, not the title's.
- name: Open a pull request
if: steps.existing-pr.outputs.open == '0' &&
((steps.validate-update.outcome == 'success' &&
steps.outcomes.outputs.on-success == 'pr' &&
env.LEAN_UPDATE_DO_UPDATE == 'true') ||
(steps.validate-update.outcome == 'failure' &&
steps.outcomes.outputs.on-failure == 'pr') ||
(steps.validate-update.outcome == 'skipped' &&
steps.outcomes.outputs.on-success == 'pr' &&
steps.outcomes.outputs.on-failure == 'pr' &&
env.LEAN_UPDATE_DO_UPDATE == 'true'))
uses: peter-evans/create-pull-request@v8
with:
token: ${{ inputs.token }}
title: "chore: Update Lean to ${{ env.LEAN_UPDATE_LATEST_LEAN }}"
commit-message: |
chore: Update Lean to ${{ env.LEAN_UPDATE_LATEST_LEAN }}
Toolchain and dependencies bumped by lean-update.
body: |
`lean-toolchain` and dependencies updated for Lean release `${{ env.LEAN_UPDATE_LATEST_LEAN }}` by [lean-update](https://github.com/argumentcomputer/lean-update).
delete-branch: true
branch: update/lean-${{ env.LEAN_UPDATE_LATEST_LEAN }}
labels: "auto-update-lean"
- name: Open issue if post-update validation was successful
if: steps.validate-update.outcome == 'success' && steps.outcomes.outputs.on-success == 'issue' && env.LEAN_UPDATE_DO_UPDATE == 'true'
run: |
: Open issue if post-update validation was successful
lake exe leanUpdate createIssue
env:
# Could be best to use the default token here
GH_TOKEN: ${{ inputs.token }}
BUILD_ARGS: ${{ inputs.build_args }}
LAKE_PACKAGE_DIRECTORY: ${{ inputs.lake_package_directory }}
shell: bash
working-directory: ${{ github.action_path }}
- name: Commit update if post-update validation was successful
if: steps.validate-update.outcome == 'success' && steps.outcomes.outputs.on-success == 'commit' && env.LEAN_UPDATE_DO_UPDATE == 'true'
uses: EndBug/add-and-commit@v10
with:
default_author: github_actions
env:
ON_UPDATE_SUCCEEDS: ${{ inputs.on_update_succeeds }}
DO_UPDATE: ${{ env.LEAN_UPDATE_DO_UPDATE }}
# ----------------- #
# when update fails #
# ----------------- #
- name: Open issue if post-update validation fails
if: steps.validate-update.outcome == 'failure' && steps.outcomes.outputs.on-failure == 'issue'
run: |
: Open issue if post-update validation fails
lake exe leanUpdate createIssue
env:
GH_TOKEN: ${{ inputs.token }}
BUILD_ARGS: ${{ inputs.build_args }}
LAKE_PACKAGE_DIRECTORY: ${{ inputs.lake_package_directory }}
shell: bash
working-directory: ${{ github.action_path }}
- name: Action fails if post-update validation fails
if: steps.validate-update.outcome == 'failure' && steps.outcomes.outputs.on-failure == 'fail'
run: |
: Action fails if post-update validation fails
exit 1
shell: bash
branding:
icon: "download-cloud"
color: "blue"