File tree Expand file tree Collapse file tree 1 file changed +2
-19
lines changed Expand file tree Collapse file tree 1 file changed +2
-19
lines changed Original file line number Diff line number Diff line change @@ -198,9 +198,9 @@ jobs:
198
198
git fetch upstream
199
199
export GIT_COMMITTER_EMAIL="[email protected] "
200
200
export GIT_COMMITTER_NAME="RL CI"
201
- git rebase upstream/main
201
+ git rebase upstream/${{ github.base_ref }}
202
202
- name : For each commit, run cargo check (including in fuzz)
203
- run : ci/check-each-commit.sh upstream/main
203
+ run : ci/check-each-commit.sh upstream/${{ github.base_ref }}
204
204
205
205
check_release :
206
206
runs-on : ubuntu-latest
@@ -291,20 +291,3 @@ jobs:
291
291
rustup component add rustfmt
292
292
- name : Run rustfmt checks
293
293
run : ci/rustfmt.sh
294
-
295
- incremental-mutants :
296
- runs-on : ubuntu-latest
297
- if : github.ref_name != 'main' # `main` has no diff with itself
298
- steps :
299
- - uses : actions/checkout@v4
300
- with :
301
- fetch-depth : 0
302
- - name : Relative diff
303
- run : |
304
- git branch -av
305
- git diff origin/main.. | tee git.diff
306
- - uses : Swatinem/rust-cache@v2
307
- - name : Mutants
308
- run : |
309
- cargo install cargo-mutants
310
- cargo mutants --no-shuffle -j 2 -vV --in-diff git.diff
You can’t perform that action at this time.
0 commit comments