Skip to content

Commit

Permalink
Show full diffs on CI
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
EliahKagan committed Apr 9, 2024
1 parent 1afaaa6 commit 5075c81
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,14 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check that working tree is initially clean
run: git status; set -x; git diff --quiet
run: |
set -x
git status
git diff --exit-code
- name: Regenerate gix-packetline-blocking/src
run: etc/copy-packetline.sh
- name: Check that gix-packetline-blocking/src was already up to date
run: git status; set -x; git diff --quiet
run: |
set -x
git status
git diff --exit-code

0 comments on commit 5075c81

Please sign in to comment.