Skip to content

Commit 93c0149

Browse files
committed
Show full diffs on CI
So when gix-packetline-blocking/src was not updated, the diff from running the script is shown in full. Right now this is to investigate how the script does not seem to work on macOS, but it may be useful to keep it.
1 parent a793bde commit 93c0149

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,14 @@ jobs:
230230
steps:
231231
- uses: actions/checkout@v4
232232
- name: Check that working tree is initially clean
233-
run: git status; set -x; git diff --quiet
233+
run: |
234+
set -x
235+
git status
236+
git diff --exit-code
234237
- name: Regenerate gix-packetline-blocking/src
235238
run: etc/copy-packetline.sh
236239
- name: Check that gix-packetline-blocking/src was already up to date
237-
run: git status; set -x; git diff --quiet
240+
run: |
241+
set -x
242+
git status
243+
git diff --exit-code

0 commit comments

Comments
 (0)