File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -76,11 +76,14 @@ jobs:
7676 # this step must be after build, because meson.build creates a number of __init__.py files
7777 # that is needed to make tools/update-meson.py run correctly
7878 shell : bash -l {0}
79- id : check_update_meson
8079 run : |
8180 python3 tools/update-meson.py
82- ./tools/test-git-no-uncommitted-changes
83- continue-on-error : true
81+ if ! ./tools/test-git-no-uncommitted-changes; then
82+ git add --intent-to-add . # also show newly created files in git diff
83+ git status
84+ git diff
85+ false
86+ fi
8487
8588 - name : Verify dependencies
8689 shell : bash -l {0}
9396 rm -R ./src/sage_setup/
9497 ./sage -t --all -p4
9598
96- - name : Show files changed by update-meson
97- if : ${{ steps.check_update_meson.outcome == 'failure' }}
98- shell : bash -l {0}
99- # must be after "Test" since we still want to run test when check_update_meson fails
100- run : |
101- git add --intent-to-add . # also show newly created files in git diff
102- git status
103- git diff
104- false
105-
10699 - name : Upload log
107100108101 if : failure()
You can’t perform that action at this time.
0 commit comments