Skip to content

Fix building on MinGW #41

Fix building on MinGW

Fix building on MinGW #41

Workflow file for this run

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