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:
198198 git fetch upstream
199199 export GIT_COMMITTER_EMAIL="rl-ci@example.com"
200200 export GIT_COMMITTER_NAME="RL CI"
201- git rebase upstream/main
201+ git rebase upstream/${{ github.base_ref }}
202202 - 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 }}
204204
205205 check_release :
206206 runs-on : ubuntu-latest
@@ -291,20 +291,3 @@ jobs:
291291 rustup component add rustfmt
292292 - name : Run rustfmt checks
293293 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