Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/azure-pipelines' into azure-pipe…
Browse files Browse the repository at this point in the history
…lines
  • Loading branch information
abellgithub committed Jun 27, 2019
2 parents 507f4ef + 582bbef commit bd20d28
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions io/EptReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ void EptReader::addDimensions(PointLayoutPtr layout)
const arbiter::Endpoint ep(m_arbiter->getEndpoint(root));
try
{
const NL::json addonInfo
{ NL::json::parse(ep.get(addonFilename)) };
const NL::json addonInfo(
NL::json::parse(ep.get(addonFilename)));
const Dimension::Type type(getRemoteType(addonInfo));
const Dimension::Id id(
layout->registerOrAssignDim(dimName, type));
Expand Down
1 change: 1 addition & 0 deletions plugins/oci/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ PDAL_ADD_PLUGIN(writer_libname writer oci
${LIBXML2_LIBRARIES}
INCLUDES
${ORACLE_INCLUDE_DIR}
${PDAL_VENDOR_DIR}/eigen
${PDAL_VENDOR_DIR}/pdalboost
${LIBXML2_INCLUDE_DIR}
)
Expand Down
9 changes: 9 additions & 0 deletions scripts/azp/win.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

jobs:
- job: win

pool:
vmImage: vs2017-win2016
timeoutInMinutes: 360
Expand Down Expand Up @@ -76,4 +77,12 @@ jobs:
set CXX=cl.exe
ninja
displayName: 'Build'
- script: |
call activate pdal
pushd build
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
set PYTHONHOME='C:/Miniconda/envs/pdal/'
set PYTHONLIB= 'C:/Miniconda/envs/pdal/Lib'
ctest -V --output-on-failure
displayName: 'Test'

0 comments on commit bd20d28

Please sign in to comment.