Skip to content

Commit c370580

Browse files
committed
Merge two report steps
1 parent 44e7572 commit c370580

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

.github/workflows/ci-meson.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,6 @@ jobs:
8282
./tools/test-git-no-uncommitted-changes
8383
continue-on-error: true
8484

85-
- name: Show files changed by update-meson
86-
if: ${{ steps.check_update_meson.outcome == 'failure' }}
87-
shell: bash -l {0}
88-
run: |
89-
git add --intent-to-add . # also show newly created files in git diff
90-
git status
91-
git diff
92-
9385
- name: Verify dependencies
9486
shell: bash -l {0}
9587
run: pip check
@@ -101,12 +93,14 @@ jobs:
10193
rm -R ./src/sage_setup/
10294
./sage -t --all -p4
10395
104-
- name: Report update-meson failure
96+
- name: Show files changed by update-meson
10597
if: ${{ steps.check_update_meson.outcome == 'failure' }}
10698
shell: bash -l {0}
99+
# must be after "Test" since we still want to run test when check_update_meson fails
107100
run: |
108-
# Please see step 'Show files changed by update-meson' above and apply the changes,
109-
# or run tools/update-meson.py locally
101+
git add --intent-to-add . # also show newly created files in git diff
102+
git status
103+
git diff
110104
false
111105
112106
- name: Upload log

0 commit comments

Comments
 (0)