From 297ed820cf66a82f92c73eab27672e038497f530 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Tue, 14 Oct 2025 14:07:33 +0800 Subject: [PATCH] fix(ci): windows oneAPI installation --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 17e200b..cd4f02e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,7 +54,7 @@ jobs: if (Test-Path $installer) { Write-Host "Installer downloaded successfully" Write-Host "Installing Intel oneAPI Base Toolkit..." - Start-Process -FilePath $installer -ArgumentList "--silent", "--eula", "accept", "--components", "intel.oneapi.win.dpcpp-compiler" -Wait + Start-Process -FilePath $installer -ArgumentList "--eula", "accept" -Wait Write-Host "Installation completed" } else { Write-Error "Failed to download installer"