Skip to content

Commit

Permalink
fix: add install_docker step in github action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
borisarzentar committed Aug 6, 2024
1 parent 6d38bcd commit 887d4e1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test_common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ jobs:
name: docs changes
uses: ./.github/workflows/get_docs_changes.yml

install_docker:
if: runner.os == 'macOS'
run: |
HOMEBREW_NO_AUTO_UPDATE=1 brew install --cask docker
sudo /Applications/Docker.app/Contents/MacOS/Docker --unattended --install-privileged-components
open -a /Applications/Docker.app --args --unattended --accept-license
echo "We are waiting for Docker to be up and running. It can take over 2 minutes..."
while ! /Applications/Docker.app/Contents/Resources/bin/docker info &>/dev/null; do sleep 1; done
setup_docker:
name: Set up Docker Buildx
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 887d4e1

Please sign in to comment.