From 0ec42eb796c31cada34e8d1c429b3bf11163d06e Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 2 Mar 2022 10:40:37 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6cfc633b..7102721d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -118,13 +118,16 @@ jobs: sudo apt-get -qq --yes update sudo apt-get -qq --yes install swig libpcsclite-dev - - name: Install necessary MacOS tools + - name: MacOS remove Homebrew if: matrix.os == 'macos-11' run: | # Kill brew so Python is happy and uses XCode libraries curl -fsSL -o uninstall.sh https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh /bin/bash uninstall.sh -f - + + - name: MacOS install tools + if: matrix.os == 'macos-11' + run: | # Install latest Rust curl -fsS -o rust.sh https://sh.rustup.rs bash ./rust.sh -y