fix: add steps
This commit is contained in:
parent
887d4e1ece
commit
fd20fac5be
1 changed files with 8 additions and 6 deletions
14
.github/workflows/test_common.yml
vendored
14
.github/workflows/test_common.yml
vendored
|
|
@ -20,12 +20,14 @@ jobs:
|
|||
|
||||
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
|
||||
steps:
|
||||
- name: Install Docker
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue