Commit 2b511849 authored by Yan Yan's avatar Yan Yan
Browse files

try to fix windiws CI

parent 1c679302
...@@ -48,8 +48,14 @@ jobs: ...@@ -48,8 +48,14 @@ jobs:
$Env:CUMM_CUDA_ARCH_LIST = "all" $Env:CUMM_CUDA_ARCH_LIST = "all"
$Env:SPCONV_DISABLE_JIT = "1" $Env:SPCONV_DISABLE_JIT = "1"
pip install pccm pybind11 pip install pccm pybind11
$CUDA_INCLUDE_THRUST = "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v${{ matrix.cuda-version }}\include\thrust"
if (Test-Path -Path $CUDA_INCLUDE_THRUST) {
} else {
git clone -b cuda-${{ matrix.cuda-version }} https://github.com/NVIDIA/thrust $HOME/thrust_git git clone -b cuda-${{ matrix.cuda-version }} https://github.com/NVIDIA/thrust $HOME/thrust_git
ls $HOME/thrust_git/thrust ls $HOME/thrust_git/thrust
mv $HOME/thrust_git/thrust "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v${{ matrix.cuda-version }}\include"
}
ls "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v${{ matrix.cuda-version }}\include\thrust" ls "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v${{ matrix.cuda-version }}\include\thrust"
$Env:CUMM_THRUST_INCLUDE = "$HOME/thrust_git" $Env:CUMM_THRUST_INCLUDE = "$HOME/thrust_git"
python -m build --wheel --outdir dist/ . python -m build --wheel --outdir dist/ .
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment