From b56b85e852b8149338cf64ccad4c6927b1ba9a3f Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Thu, 8 Aug 2024 12:01:50 +0200 Subject: [PATCH] removed docker mac building step Based on this discussion, Docker daemon is not supported in macos images: https://github.com/orgs/community/discussions/69211#discussioncomment-7242133 --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ee205c..f25a848 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,14 +69,9 @@ jobs: timeout-minutes: 15 build-docker: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, macos-latest] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - run: brew install docker - if: contains(matrix.os, 'macos') # We've run into out-of-disk error when compiling Polkadot in the next step, so we free up some space this way. - name: Free Disk Space (Ubuntu)