Skip to content

Commit

Permalink
try installing docker on macos differently
Browse files Browse the repository at this point in the history
  • Loading branch information
Weakky committed Jun 3, 2024
1 parent 8368c12 commit 46ff76f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,15 @@ jobs:

- uses: actions-rs/toolchain@v1

- uses: docker-practice/actions-setup-docker@master
- name: Install docker # Taken from https://github.com/actions/virtual-environments/issues/1143#issuecomment-652264388
run: |
mkdir -p ~/.docker/machine/cache
curl -Lo ~/.docker/machine/cache/boot2docker.iso https://github.com/boot2docker/boot2docker/releases/download/v19.03.12/boot2docker.iso
brew install docker docker-machine
docker-machine create --driver virtualbox default
docker-machine env default
# - uses: docker-practice/actions-setup-docker@master

- name: Start SQL Server ${{matrix.database}}
run: DOCKER_BUILDKIT=1 docker-compose -f docker-compose.yml up -d mssql-${{matrix.database}}
Expand Down

0 comments on commit 46ff76f

Please sign in to comment.