Skip to content

Commit a48d650

Browse files
authored
Merge pull request #3954 from tnull/2025-07-drop-incremental-mutants-0.1
Drop `incremental-mutants` CI job (0.1)
2 parents 1ba053a + ddd31ef commit a48d650

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
@@ -198,9 +198,9 @@ jobs:
198198
git fetch upstream
199199
export GIT_COMMITTER_EMAIL="[email protected]"
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

0 commit comments

Comments
 (0)