Skip to content

Commit 95b82a1

Browse files
author
stoo
committed
remove dupe windows sparsehash install step
1 parent 2c94885 commit 95b82a1

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/workflows/build-windows-wheel-test.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -114,18 +114,6 @@ jobs:
114114
method: 'network'
115115
sub-packages: '["nvcc", "cudart", "cublas", "curand", "cufft", "cusparse", "cusolver"]'
116116

117-
- name: Install sparsehash (Windows)
118-
if: runner.os == 'Windows'
119-
shell: pwsh
120-
run: |
121-
# Download and extract sparsehash
122-
Invoke-WebRequest -Uri "https://github.com/sparsehash/sparsehash/archive/refs/tags/sparsehash-2.0.4.zip" -OutFile "sparsehash.zip"
123-
Expand-Archive -Path "sparsehash.zip" -DestinationPath "C:\"
124-
# Rename-Item "C:\sparsehash-sparsehash-2.0.4" "C:\sparsehash"
125-
126-
# Set environment variable for subsequent steps
127-
echo "INCLUDE=$env:INCLUDE;C:\sparsehash\src" >> $env:GITHUB_ENV
128-
129117
- name: Setup Visual Studio environment (Windows)
130118
if: runner.os == 'Windows'
131119
uses: ilammy/msvc-dev-cmd@v1
@@ -139,7 +127,7 @@ jobs:
139127
# Download and extract sparsehash
140128
Invoke-WebRequest -Uri "https://github.com/sparsehash/sparsehash/archive/refs/tags/sparsehash-2.0.4.zip" -OutFile "sparsehash.zip"
141129
Expand-Archive -Path "sparsehash.zip" -DestinationPath "C:\"
142-
# Rename-Item "C:\sparsehash-sparsehash-2.0.4" "C:\sparsehash"
130+
Rename-Item "C:\sparsehash-sparsehash-2.0.4" "C:\sparsehash"
143131
144132
# Set environment variable for subsequent steps
145133
echo "INCLUDE=$env:INCLUDE;C:\sparsehash\src" >> $env:GITHUB_ENV

0 commit comments

Comments
 (0)