From a5e12feede9569005d60fa7b3394219796684927 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Thu, 8 Aug 2024 10:56:22 +0200 Subject: [PATCH] added missing installation --- .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 1dbb240..0eefcce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,9 @@ jobs: - name: Install Cargo (MacOS) if: contains(matrix.os, 'macos') - run: curl https://sh.rustup.rs -sSf -y | sh + run: | + curl https://sh.rustup.rs -sSf -y | sh + brew install protobuf # We've run into out-of-disk error when compiling Polkadot in the next step, so we free up some space this way. - name: Free Disk Space (Ubuntu)