Skip to content

Commit 7555ebc

Browse files
committed
windows churn
1 parent e20cc37 commit 7555ebc

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

scripts/azp/linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ jobs:
2121
- script: |
2222
source activate pdal
2323
py.test
24-
pdal --drivers| grep \'python\|numpy\'
24+
pdal --drivers| grep python
25+
pdal --drivers| grep numpy
2526
displayName: 'Test'

scripts/azp/osx.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
which pytest
4848
pytest
4949
pdal --version
50-
pdal --drivers| grep \'python\|numpy\'
50+
pdal --drivers| grep python
51+
pdal --drivers| grep numpy
5152
displayName: 'Test'
5253

scripts/azp/win.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
- script: |
2828
ECHO ON
2929
call activate pdal
30-
call "C:\Program Files (x86)\Common Files\Microsoft\Visual C++ for Python\9.0\vcvarsall.bat" x86_amd64
30+
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
31+
echo %PATH%
32+
set CC=cl.exe
33+
set CXX=cl.exe
3134
pip install -e .
3235
displayName: 'Build'
3336
- script: |

0 commit comments

Comments
 (0)