From 978a32c2532915aba33248b7ee7c6c361e73de44 Mon Sep 17 00:00:00 2001 From: John Schug Date: Sat, 13 Apr 2024 02:17:35 -0700 Subject: [PATCH] Fix ci rust install --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9899e79..6d29578 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,9 @@ jobs: run: brew install gnupg - name: Install rust - run: rustup default --no-self-update ${{ matrix.rust }} + run: rustup toolchain install --no-self-update --profile minimal ${{ matrix.rust }} + + - run: rustup default ${{ matrix.rust }} - name: Build run: cargo build --verbose