File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -50,16 +50,16 @@ jobs:
50
50
with :
51
51
tool : cargo-semver-checks
52
52
53
- # if a new line is added here, make sure to update the `summary` job to reference the new step index
54
53
- uses : taiki-e/install-action@v2
55
54
with :
56
55
tool : git-delta
57
56
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 }}
59
59
env :
60
60
GH_TOKEN : ${{ github.token }}
61
61
GITHUB_PR : ${{ matrix.pr }}
62
- GIT_PAGER : delta --hunk-header-style omit
62
+ GIT_PAGER : delta --raw
63
63
summary :
64
64
runs-on : ubuntu-latest
65
65
needs : [diff, generate]
Original file line number Diff line number Diff line change @@ -73,4 +73,9 @@ features = ["full","extra-traits"]
73
73
[workspace ]
74
74
members = [" ci/svd2rust-regress" ]
75
75
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
+ ]
You can’t perform that action at this time.
0 commit comments