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 fdbade1 commit 6debaf7Copy full SHA for 6debaf7
.github/workflows/sycl-windows-build.yml
@@ -243,6 +243,18 @@ jobs:
243
$exitCode = $LASTEXITCODE
244
Remove-Item -Path "windows_detect_hung_tests.ps1"
245
exit $exitCode
246
+ - name: Pack E2E test binaries
247
+ if: ${{ always() && !cancelled() && steps.build.conclusion == 'success' }}
248
+ shell: bash
249
+ run: |
250
+ tar -czf e2e_bin -C build-e2e .
251
+ - name: Upload E2E test binaries
252
253
+ uses: actions/upload-artifact@v4
254
+ with:
255
+ name: sycl_windows_e2ebin
256
+ path: e2e_bin
257
+ retention-days: 3
258
- name: Cleanup
259
shell: cmd
260
if: always()
0 commit comments