Skip to content

Commit

Permalink
docker spin up with brew
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 committed Aug 2, 2023
1 parent e516fff commit ee23435
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/nightlies-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
workflows: [daft-publish]
types:
- completed
pull_request:
branches: [main]

jobs:
integration-test-tpch:
Expand Down Expand Up @@ -86,9 +88,17 @@ jobs:
with:
submodules: true
fetch-depth: 0
- uses: docker-practice/actions-setup-docker@master
timeout-minutes: 15
- name: Setup docker (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker docker-compose
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: Setup Virtual Env
run: |
python3 -m venv venv
Expand Down

0 comments on commit ee23435

Please sign in to comment.