From 62923c5677fd92e11669053a9ccc3fd436ab8ab0 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Tue, 6 Apr 2021 15:30:59 -0400 Subject: [PATCH] CI: Install Intel IPP using nuget --- .github/workflows/build.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d91345a22..26f23080c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,12 +122,7 @@ jobs: - name: Install Intel IPP run: | - $TempDir = "$env:RUNNER_WORKSPACE\temp" - $Filename = "w_ipp_oneapi_p_${env:IPP_VERSION}_offline.exe" - New-Item -Path "$TempDir" -ItemType Directory -ea 0 - (New-Object Net.WebClient).DownloadFile("https://registrationcenter-download.intel.com/akdlm/irc_nas/$Filename", "$TempDir\$Filename") - Start-Process "$TempDir\$Filename" -ArgumentList "--x --s --f $TempDir\ipp" -Wait - Start-Process "$TempDir\ipp\bootstrapper.exe" -ArgumentList "--eula accept -c --action install" -Wait + Install-Package intelipp.devel.win-x64 -Version $env:IPP_VERSION - name: Install dependencies run: choco install ninja vulkan-sdk @@ -183,12 +178,7 @@ jobs: - name: Install Intel IPP run: | - $TempDir = "$env:RUNNER_WORKSPACE\temp" - $Filename = "w_ipp_oneapi_p_${env:IPP_VERSION}_offline.exe" - New-Item -Path "$TempDir" -ItemType Directory -ea 0 - (New-Object Net.WebClient).DownloadFile("https://registrationcenter-download.intel.com/akdlm/irc_nas/$Filename", "$TempDir\$Filename") - Start-Process "$TempDir\$Filename" -ArgumentList "--x --s --f $TempDir\ipp" -Wait - Start-Process "$TempDir\ipp\bootstrapper.exe" -ArgumentList "--eula accept -c --action install" -Wait + Install-Package intelipp.devel.win-x64 -Version $env:IPP_VERSION - name: Install dependencies run: choco install ninja vulkan-sdk