From 4697b0840f895d54f0c9c51b1b0576b95bbec7da Mon Sep 17 00:00:00 2001 From: leynos Date: Thu, 23 Jul 2026 01:09:32 +0200 Subject: [PATCH] Remove the obsolete dylint-link preinstall workaround MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CI lint step preinstalled `dylint-link@6.0.1` to work around whitaker-installer 0.2.6, whose broken `dylint-link` verification forced a source-build fallback that could not compile on this repository's pinned toolchain. Installer 0.2.7 (leynos/whitaker#299) trusts the verified repository artefact and installs `dylint-link` from the release directly, so the preinstall — and its stale 0.2.6 comment — are no longer needed. --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14bf43b..17dab79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,14 +44,6 @@ jobs: cargo install --locked whitaker-installer --version "${WHITAKER_INSTALLER_VERSION}" fi fi - # whitaker-installer 0.2.6 probes binstall with the same broken - # `--version` flag, so its dylint-link fallback compiles from - # crates.io and needs rustc >= 1.91 — newer than this repository's - # pinned nightly. Preinstall the prebuilt dylint-link that the - # installer expects so it detects the tool and skips that path. - if cargo binstall -V >/dev/null 2>&1; then - cargo binstall --no-confirm dylint-link@6.0.1 - fi whitaker-installer - name: Lint run: make lint