Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try to fix more Mac CI failures #435

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/install_dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@ case "${unameOut}" in

Darwin*)
echo "Installing MacOS dependencies"
brew update

# detect when running in github workflow and skip `brew update` (relay on fresh OS image)
if [ -n "${GITHUB_ACTION}" ] ; then
echo "running in GitHub Workflow, skipping brew update"
echo "running ${ImageOS} vsersion ${ImageVersion}"
else
brew update
fi

brew install \
lame \
libshout \
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 35 # runtime across all OSs, runs can get queued
steps:
- name: Runner Info
run: printenv | sort

- name: Checkout repository
uses: actions/checkout@main

Expand Down