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 @@ -219,9 +219,9 @@ jobs:
219219 git fetch upstream
220220 export GIT_COMMITTER_EMAIL="[email protected] " 221221 export GIT_COMMITTER_NAME="RL CI"
222- git rebase upstream/main
222+ git rebase upstream/${{ github.base_ref }}
223223 - name : For each commit, run cargo check (including in fuzz)
224- run : ci/check-each-commit.sh upstream/main
224+ run : ci/check-each-commit.sh upstream/${{ github.base_ref }}
225225
226226 check_release :
227227 runs-on : ubuntu-latest
@@ -305,20 +305,3 @@ jobs:
305305 rustup component add rustfmt
306306 - name : Run rustfmt checks
307307 run : cargo fmt --check
308-
309- incremental-mutants :
310- runs-on : ubuntu-latest
311- if : github.ref_name != 'main' # `main` has no diff with itself
312- steps :
313- - uses : actions/checkout@v4
314- with :
315- fetch-depth : 0
316- - name : Relative diff
317- run : |
318- git branch -av
319- git diff origin/main.. | tee git.diff
320- - uses : Swatinem/rust-cache@v2
321- - name : Mutants
322- run : |
323- cargo install cargo-mutants
324- cargo mutants --no-shuffle -j 2 -vV --in-diff git.diff
You can’t perform that action at this time.
0 commit comments