thin also needs --input #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux build | |
on: [push, pull_request] | |
jobs: | |
linux-build: | |
name: Linux build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Conda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
channels: conda-forge | |
auto-update-conda: true | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
mkdir build | |
conda update -n base -c defaults conda | |
conda install -c conda-forge cmake ninja compilers -y | |
conda install -c conda-forge --yes --quiet pdal -y | |
- name: Run cmake | |
shell: bash -l {0} | |
working-directory: ./build | |
run: | | |
LDFLAGS="$LDFLAGS -Wl,-rpath-link,$CONDA_PREFIX/lib -pthread -lpthread" \ | |
cmake -G Ninja \ | |
-DCMAKE_INSTALL_PREFIX=${CONDA_PREFIX} \ | |
.. | |
- name: Build pdal_wrench | |
shell: bash -l {0} | |
working-directory: ./build | |
run: | | |
ninja | |
ninja install |