diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 09f4b1c..259115b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,12 +11,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu22_16cores_64gb, macos-latest] - build-url: - [ - "latest", - "https://desktop.docker.com/linux/main/amd64/122432/docker-desktop-4.24.0-amd64.deb", - ] + os: [macos-latest] + build-url: ["latest"] #timeout-minutes: 20 steps: - uses: actions/checkout@v4 diff --git a/start/action.yml b/start/action.yml index f0d90ec..a2ad321 100644 --- a/start/action.yml +++ b/start/action.yml @@ -173,7 +173,7 @@ runs: - name: Wait for Docker to be up and running shell: bash run: | - for i in $(seq 1 10); do /Applications/Docker.app/Contents/Resources/bin/docker ps && break || sleep 1; done + for i in $(seq 1 100); do /Applications/Docker.app/Contents/Resources/bin/docker ps ; done echo "Docker started and ready"