We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d55e7d commit 328e1e9Copy full SHA for 328e1e9
.github/workflows/zxc-compile-code.yaml
@@ -182,12 +182,18 @@ jobs:
182
docker context ls
183
docker context use desktop-linux
184
185
- - name: Switch to Linux mode
+ - name: Switch to Linux mode using docker context
186
if: ${{ runner.os == 'Windows' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
187
run: |
188
189
190
-
+ - name: Switch to Linux mode using DockerCli.exe
191
+ shell: pwsh
192
+ if: ${{ runner.os == 'Windows' && inputs.enable-e2e-tests && !cancelled() }}
193
+ run: |
194
+ cd "C:\Program Files\Docker\Docker"
195
+ .\DockerCli.exe -SwitchLinuxEngine
196
+
197
198
- name: Setup E2E Tests
199
if: ${{ inputs.enable-e2e-tests && !cancelled() && !failure() }}
0 commit comments