Skip to content

Commit

Permalink
Comment out macos-latest docker build, facing docker issue on image a…
Browse files Browse the repository at this point in the history
  • Loading branch information
NeetishPathak committed Dec 5, 2023
1 parent da92a37 commit 7f288b4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/juno_server_docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
build-juno-docker:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
PROXY_TLS_PORT: 5080
Expand All @@ -32,8 +33,15 @@ jobs:
run: |
echo "Openssl Version:" `openssl version`
- name: Set up Docker
uses: docker-practice/actions-setup-docker@master
# uses: docker-practice/actions-setup-docker@master
# uses: crazy-max/ghaction-setup-docker@v2
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install docker
colima start
# For testcontainers to find the Colima socket
# https://github.com/abiosoft/colima/blob/main/docs/FAQ.md#cannot-connect-to-the-docker-daemon-at-unixvarrundockersock-is-the-docker-daemon-running
sudo ln -sf $HOME/.colima/default/docker.sock /var/run/docker.sock
- name: Docker Version Check
run: docker version
- name: Build docker containers
Expand Down

0 comments on commit 7f288b4

Please sign in to comment.