From 4d149c6940567f098ea587e76ef9627652d15c5d Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Fri, 21 Feb 2025 00:30:57 +0100 Subject: [PATCH] Poor man's attempt at fixing Windows CI --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 419127b6aea9fe..09dd6e53f870c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -263,6 +263,11 @@ jobs: mkdir -p ${{ env.CARGO_HOME }} -ErrorAction Ignore cp ./.cargo/ci-config.toml ${{ env.CARGO_HOME }}/config.toml + - name: Run rustup update + working-directory: ${{ env.ZED_WORKSPACE }} + # Windows can't run shell scripts, so we need to use `cargo xtask`. + run: rustup update + - name: cargo clippy working-directory: ${{ env.ZED_WORKSPACE }} # Windows can't run shell scripts, so we need to use `cargo xtask`.