Skip to content

Commit 9b8493e

Browse files
committed
use regular diff
1 parent 121ca49 commit 9b8493e

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/diff.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@ jobs:
5050
with:
5151
tool: cargo-semver-checks
5252

53-
# if a new line is added here, make sure to update the `summary` job to reference the new step index
5453
- uses: taiki-e/install-action@v2
5554
with:
5655
tool: git-delta
5756

58-
- run: cargo regress diff --use-pager-directly ${{ matrix.command }}
57+
# if a new line is added here, make sure to update the `summary` job to reference the new step index
58+
- run: cargo regress diff ${{ matrix.command }}
5959
env:
6060
GH_TOKEN: ${{ github.token }}
6161
GITHUB_PR: ${{ matrix.pr }}
62-
GIT_PAGER: delta --hunk-header-style omit
62+
GIT_PAGER: delta --raw
6363
summary:
6464
runs-on: ubuntu-latest
6565
needs: [diff, generate]

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,9 @@ features = ["full","extra-traits"]
7373
[workspace]
7474
members = ["ci/svd2rust-regress"]
7575
default-members = ["."]
76-
exclude = ["output"]
76+
exclude = [
77+
"output/**",
78+
# workaround for https://github.com/rust-lang/cargo/pull/12779
79+
"output/baseline/**",
80+
"output/current/**"
81+
]

0 commit comments

Comments
 (0)