Skip to content

Commit 6b7e9f9

Browse files
authored
Merge pull request #3953 from tnull/2025-07-drop-incremental-mutants
Drop `incremental-mutants` CI job (main)
2 parents 39e8d7d + 36116be commit 6b7e9f9

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)