Skip to content

Commit 213bb88

Browse files
fix install docker
Signed-off-by: Yury-Fridlyand <[email protected]>
1 parent 93d54d2 commit 213bb88

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/install-docker/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@ runs:
1717
Enable-WindowsOptionalFeature -Online -FeatureName containers -All
1818
choco install docker-desktop -y --params="'/LinuxContainers'"
1919
20+
- name: Set up QEMU
21+
uses: docker/setup-qemu-action@v2
22+
2023
- name: Setup Docker on Mac
2124
if: ${{ inputs.os == 'macos' }}
2225
shell: bash
2326
run: |
24-
brew install docker colima qemu
27+
brew install docker colima
2528
colima start --vm-type=qemu
2629
docker version

.github/workflows/tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,13 @@ jobs:
100100
- run: cargo build
101101
working-directory: rust
102102

103-
- name: Install Docker
104-
uses: ./.github/workflows/install-docker
105-
with:
106-
os: ${{ matrix.host.OS }}
103+
# - name: Install Docker
104+
# uses: ./.github/workflows/install-docker
105+
# with:
106+
# os: ${{ matrix.host.OS }}
107+
108+
- name: Set up Docker
109+
uses: docker/setup-docker-action@v4
107110

108111

109112
- name: Test dotnet ${{ matrix.dotnet }}

0 commit comments

Comments
 (0)