Browse Source

GHA CI: fix environment variable not being used

Related issue: https://github.com/Wandalen/wretry.action/issues/106
A workaround was suggested in https://github.com/Wandalen/wretry.action/issues/106#issuecomment-1631860467

PR #19303.
adaptive-webui-19844
Chocobo1 1 year ago committed by GitHub
parent
commit
060466e326
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/ci_macos.yaml

6
.github/workflows/ci_macos.yaml

@ -34,13 +34,13 @@ jobs:
- name: Install dependencies - name: Install dependencies
uses: Wandalen/wretry.action@v1 uses: Wandalen/wretry.action@v1
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
with: with:
attempt_delay: 20000 attempt_delay: 20000
attempt_limit: 6 attempt_limit: 6
command: | command: |
export \
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 \
HOMEBREW_NO_INSTALL_CLEANUP=1
brew update > /dev/null brew update > /dev/null
brew install \ brew install \
cmake ninja \ cmake ninja \

Loading…
Cancel
Save