From fb41503965b173f2da41a464a06d7899ba54db0b Mon Sep 17 00:00:00 2001 From: Xiang Li Date: Sun, 18 Sep 2022 09:43:22 -0700 Subject: [PATCH] [ci] Update prebuild binary for llvm 15. Build based on release/15.x branch and cherry-picked some patch for DX12. --- .github/workflows/scripts/win_build.ps1 | 2 +- ci/windows/win_build_test.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/win_build.ps1 b/.github/workflows/scripts/win_build.ps1 index 38ecd156a9753..dba6d15e0cc9c 100644 --- a/.github/workflows/scripts/win_build.ps1 +++ b/.github/workflows/scripts/win_build.ps1 @@ -62,7 +62,7 @@ if (!$llvmVer.CompareTo("10")) { } else { if (-not (Test-Path "taichi_llvm_15")) { WriteInfo("Download and extract LLVM") - curl.exe --retry 10 --retry-delay 5 https://github.com/python3kgae/taichi_assets/releases/download/llvm15_vs2019_clang_220731/taichi-llvm-15.0.0-msvc2019.zip -LO + curl.exe --retry 10 --retry-delay 5 https://github.com/python3kgae/taichi_assets/releases/download/llvm15_vs2019_clang/taichi-llvm-15.0.0-msvc2019.zip -LO if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE; } 7z x taichi-llvm-15.0.0-msvc2019.zip -otaichi_llvm_15 } diff --git a/ci/windows/win_build_test.ps1 b/ci/windows/win_build_test.ps1 index 2e75e991e371a..ed32d138bbe6d 100644 --- a/ci/windows/win_build_test.ps1 +++ b/ci/windows/win_build_test.ps1 @@ -32,7 +32,7 @@ if (!$llvmVer.CompareTo("10")) { } else { if (-not (Test-Path "taichi_llvm_15")) { WriteInfo("Download and extract LLVM") - curl.exe --retry 10 --retry-delay 5 https://github.com/python3kgae/taichi_assets/releases/download/llvm15_vs2019_clang_220731/taichi-llvm-15.0.0-msvc2019.zip -LO + curl.exe --retry 10 --retry-delay 5 https://github.com/python3kgae/taichi_assets/releases/download/llvm15_vs2019_clang/taichi-llvm-15.0.0-msvc2019.zip -LO if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE; } 7z x taichi-llvm-15.0.0-msvc2019.zip -otaichi_llvm_15 }