From 87da6f006c6127425990fad0b2ec3803df7cb2b1 Mon Sep 17 00:00:00 2001 From: carlosuc3m <49989524+carlosuc3m@users.noreply.github.com> Date: Tue, 18 Jun 2024 01:30:00 +0200 Subject: [PATCH] correct installation command --- .github/workflows/build-and-run.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-run.yaml b/.github/workflows/build-and-run.yaml index 8a504dd..35e07f4 100644 --- a/.github/workflows/build-and-run.yaml +++ b/.github/workflows/build-and-run.yaml @@ -35,7 +35,7 @@ jobs: if: runner.os == 'Windows' run: | curl -L -o opencl_runtime_installer.exe "https://registrationcenter-download.intel.com/akdlm/IRC_NAS/0e6849e6-2c56-480b-afcf-be8331d5c4f6-opencl/w_opencl_runtime_p_2024.1.0.968.exe" - .\opencl_runtime_installer.exe /S /norestart + Start-Process -FilePath ".\opencl_runtime_installer.exe" -ArgumentList '/S', '/norestart' -NoNewWindow -Wait - name: Increase swapfile on Ubuntu if: runner.os == 'Linux'