Skip to content

Commit

Permalink
osx azp
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jun 29, 2019
1 parent 630e465 commit 637ad6a
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 3 deletions.
4 changes: 1 addition & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
jobs:
- template: ./scripts/azp/linux.yml
- template: ./scripts/azp/win.yml
# - template: ./scripts/azp/osx.yml
# - template: ./scripts/azp/win.yml
# - template: ./scripts/azp/docs.yml
- template: ./scripts/azp/osx.yml
95 changes: 95 additions & 0 deletions scripts/azp/osx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# -*- mode: yaml -*-

jobs:
- job: osx
pool:
vmImage: macOS-10.13
timeoutInMinutes: 360
- script: |
echo "Removing homebrew from Azure to avoid conflicts."
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew
chmod +x ~/uninstall_homebrew
~/uninstall_homebrew -fq
rm ~/uninstall_homebrew
displayName: Remove homebrew
- bash: |
echo "##vso[task.prependpath]$CONDA/bin"
sudo chown -R $USER $CONDA
displayName: Add conda to PATH
- script: |
ECHO ON
source activate base
conda create --yes --quiet --name pdal
displayName: Create conda environment
- script: |
ECHO ON
source activate pdal
conda config --set always_yes True --set show_channel_urls True
conda install --yes --quiet --name pdal -c conda-forge geotiff laszip nitro curl gdal cmake eigen ninja libgdal zstd numpy xz libxml2 laz-perf qhull sqlite hdf5 tiledb conda-build ninja -y
displayName: Install PDAL dependencies
steps:
- script: |
echo "current directory:" `pwd`
mkdir build
cd build
cmake -G Ninja \
-DCMAKE_LIBRARY_PATH:FILEPATH="$CONDA_PREFIX/lib" \
-DCMAKE_INCLUDE_PATH:FILEPATH="$CONDA_PREFIX/include" \
-DPython3_ROOT_DIR:FILEPATH="$CONDA_PREFIX" \
-DCMAKE_FIND_FRAMEWORK="NEVER" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=${CONDA_PREFIX} \
-DBUILD_PLUGIN_SQLITE=ON \
-DBUILD_PLUGIN_PGPOINTCLOUD=ON \
-DBUILD_PLUGIN_NITF=ON \
-DBUILD_PLUGIN_PYTHON=ON \
-DBUILD_PLUGIN_ICEBRIDGE=ON \
-DBUILD_PLUGIN_PCL=OFF \
-DBUILD_PLUGIN_GREYHOUND=ON \
-DBUILD_PLUGIN_TILEDB=ON \
-DWITH_LAZPERF=ON \
-DWITH_ZSTD=ON \
-DWITH_LASZIP=ON \
..
displayName: 'CMake'
- script: |
cd build
source activate pdal
ninja
displayName: 'Build'
- script: |
cd build
source activate pdal
ctest -V
displayName: 'Test'
- script: |
export PDAL_TEST_DIR=`pwd`/test
export INSTALL_DIR=`pwd`/install
export PATH=$PATH:$INSTALL_DIR/bin
cd build
source activate pdal
ls build/lib/*
ninja install
# Python extension testing
#
pip3 install packaging cython
git clone https://github.com/PDAL/python.git pdal-python
cd pdal-python
git checkout 2.0.0
python3 setup.py build
LD_LIBRARY_PATH=$INSTALL_DIR/lib python3 setup.py test
displayName: 'Python'
- script: |
export BASE=`pwd`
for EXAMPLE in writing writing-filter writing-kernel writing-reader writing-writer
do
cd $BASE/examples/$EXAMPLE
mkdir -p _build || exit 1
cd _build || exit 1
cmake -G "Ninja" .. -DPDAL_DIR=$BASE/install/lib/cmake/PDAL && ninja
done
displayName: 'Examples'

0 comments on commit 637ad6a

Please sign in to comment.