From a3b229c55aa9936ae0884fba3f7320a9ba51313f Mon Sep 17 00:00:00 2001 From: Oleksandr Kuzminskyi Date: Sat, 20 Jul 2024 13:05:05 -0700 Subject: [PATCH] Docker on macos-14 (image, not OS) isn't supported, so build x86_64 only --- .github/workflows/CD.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index fd10417..b1d031e 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -12,9 +12,7 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - # os: ["ubuntu-latest", "macos-14"] - os: ["macos-14"] - + os: ["ubuntu-latest", "macos-14"] steps: - name: Check out the repo uses: actions/checkout@v4 @@ -25,25 +23,6 @@ jobs: run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT id: extract_branch - - name: "Install Docker" - if: "${{matrix.os == 'macos-14'}}" - run: | - brew install docker - brew install colima - brew services start colima -# colima start -# wget -q https://desktop.docker.com/mac/main/arm64/Docker.dmg -# sudo hdiutil attach Docker.dmg -# sudo /Volumes/Docker/Docker.app/Contents/MacOS/install --accept-license -# sudo hdiutil detach /Volumes/Docker -# echo "/Applications/Docker.app/Contents/Resources/bin" >> $GITHUB_PATH - - - name: "Setup tmate session" - uses: "mxschmitt/action-tmate@v3" - if: "${{matrix.os == 'macos-14'}}" - with: - limit-access-to-actor: true - - name: "Log in to Docker Hub" uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a with: