feat: test the CI build (#1972)

Add some debug message to check where it failed.

Signed-off-by: Guo Dong <guo.dong@intel.com>
This commit is contained in:
Guo Dong 2023-07-19 10:59:18 -07:00 committed by GitHub
parent f9898fc7bd
commit 5709536984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -252,14 +252,14 @@ jobs:
} }
} }
"@ "@
echo "Create a new object"
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy [System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
echo "nasm link below is not available, comment it out to use the default version" echo "Download nasm"
Invoke-WebRequest -Uri https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/nasm-2.14.02-win64.zip -OutFile nasm.zip Invoke-WebRequest -Uri https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/nasm-2.14.02-win64.zip -OutFile nasm.zip
echo "expand nasm" echo "Expand nasm"
Expand-Archive .\nasm.zip C:\ Expand-Archive .\nasm.zip C:\
echo "download iasl" echo "Download iasl"
# Download iasl-win-20221020_Signed.zip
Invoke-WebRequest -Uri https://cdrdv2.intel.com/v1/dl/getContent/774881 -OutFile iasl.zip Invoke-WebRequest -Uri https://cdrdv2.intel.com/v1/dl/getContent/774881 -OutFile iasl.zip
Expand-Archive .\iasl.zip C:\iasl Expand-Archive .\iasl.zip C:\iasl
echo "##vso[task.setvariable variable=nasm_prefix;]C:\nasm-2.14.02\" echo "##vso[task.setvariable variable=nasm_prefix;]C:\nasm-2.14.02\"