Skip to content

Commit 75b9e12

Browse files
committed
chore: add -v flag to lake update in CI (#29338)
Seems no harm to have this information. We only ever look at these logs on failure anyway.
1 parent eb67d86 commit 75b9e12

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/nightly_merge_master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
git merge upstream/master --strategy-option ours --no-commit --allow-unrelated-histories || true
4747
# We aggressively run `lake update`, to avoid having to do this by hand.
4848
# When Batteries changes break Mathlib, this will likely show up on nightly-testing first.
49-
lake update
49+
lake update -v
5050
git add .
5151
# If there's nothing to do (because there are no new commits from master),
5252
# that's okay, hence the '|| true'.

.github/workflows/update_dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
5757
- name: Update dependencies
5858
if: ${{ !contains(steps.PR.outputs.pr_labels, 'ready-to-merge') }}
59-
run: lake update
59+
run: lake update -v
6060

6161
- name: Check if lean-toolchain was modified
6262
if: ${{ !contains(steps.PR.outputs.pr_labels, 'ready-to-merge') }}

scripts/merge-lean-testing-pr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if git ls-files -u | grep -q '^'; then
2929
exit 1
3030
fi
3131

32-
if ! lake update; then
32+
if ! lake update -v; then
3333
echo "Lake update failed. Please resolve conflicts manually."
3434
git status
3535
exit 1

0 commit comments

Comments
 (0)