From 6ee1c4c634f42d5935177c43a5af00e8aa331964 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sun, 6 Oct 2024 08:54:48 -0400 Subject: [PATCH] CI: Install pyyaml from pip Homebrew has disabled the pyyaml package for some reason. --- .github/actions/setup/action.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index f1a96c78170..d612bce2c06 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -38,11 +38,10 @@ runs: echo "${{ github.workspace }}/wabt-1.0.35/bin" >> $GITHUB_PATH - name: 'Install Python dependencies' - if: ${{ inputs.os == 'Linux' }} shell: bash run: | python3 -m pip install --break-system-packages --upgrade pip - pip3 install --break-system-packages requests six + pip3 install --break-system-packages pyyaml requests six - name: 'Select latest Xcode' if: ${{ inputs.os == 'macOS' || inputs.os == 'Android' }} @@ -56,7 +55,7 @@ runs: run: | set -e brew update - brew install autoconf autoconf-archive automake bash ccache coreutils ffmpeg llvm@18 nasm ninja qt unzip wabt pyyaml + brew install autoconf autoconf-archive automake bash ccache coreutils ffmpeg llvm@18 nasm ninja qt unzip wabt - name: 'Install vcpkg' shell: bash