Skip to content

Commit 429a257

Browse files
Add PowerShell warm-up step for Windows CI runs
1 parent b6fb738 commit 429a257

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/sdk-e2e-tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ jobs:
5151
working-directory: ./test/harness
5252
run: npm ci --ignore-scripts
5353

54+
- name: Warm up PowerShell
55+
if: runner.os == 'Windows'
56+
shell: pwsh
57+
run: Write-Host "PowerShell ready"
58+
5459
- name: Run Node.js SDK tests
5560
env:
5661
COPILOT_HMAC_KEY: ${{ secrets.COPILOT_DEVELOPER_CLI_INTEGRATION_HMAC_KEY }}
@@ -99,6 +104,11 @@ jobs:
99104
working-directory: ./test/harness
100105
run: npm ci --ignore-scripts
101106

107+
- name: Warm up PowerShell
108+
if: runner.os == 'Windows'
109+
shell: pwsh
110+
run: Write-Host "PowerShell ready"
111+
102112
- name: Run Go SDK tests
103113
env:
104114
COPILOT_HMAC_KEY: ${{ secrets.COPILOT_DEVELOPER_CLI_INTEGRATION_HMAC_KEY }}
@@ -144,6 +154,11 @@ jobs:
144154
working-directory: ./test/harness
145155
run: npm ci --ignore-scripts
146156

157+
- name: Warm up PowerShell
158+
if: runner.os == 'Windows'
159+
shell: pwsh
160+
run: Write-Host "PowerShell ready"
161+
147162
- name: Run Python SDK tests
148163
env:
149164
COPILOT_HMAC_KEY: ${{ secrets.COPILOT_DEVELOPER_CLI_INTEGRATION_HMAC_KEY }}
@@ -196,6 +211,11 @@ jobs:
196211
working-directory: ./test/harness
197212
run: npm ci --ignore-scripts
198213

214+
- name: Warm up PowerShell
215+
if: runner.os == 'Windows'
216+
shell: pwsh
217+
run: Write-Host "PowerShell ready"
218+
199219
- name: Run .NET SDK tests
200220
env:
201221
COPILOT_HMAC_KEY: ${{ secrets.COPILOT_DEVELOPER_CLI_INTEGRATION_HMAC_KEY }}

0 commit comments

Comments
 (0)