From fed16c59e26ee6ae37a25f953557fbb3d1a2106d Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Thu, 12 Dec 2024 13:24:29 -0800 Subject: [PATCH] fixup! ci: TRYBUILD=overwrite on stable --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc5862641684..45174867e506 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -183,7 +183,8 @@ jobs: - name: Run cargo nextest on all targets run: cargo nextest run --no-fail-fast --features python --features deploy --all-targets env: - TRYBUILD: ${{ matrix.rust_release != 'pinned-nightly' && 'overwrite' || '' }} + # On stable the output messages will often not match pinned-nightly, so we set to 'overwrite'. + TRYBUILD: ${{ matrix.rust_release == 'pinned-nightly' && 'wip' || 'overwrite' }} - name: Run doctests run: cargo test --no-fail-fast --features python --features deploy --doc