Pass nosrs
to las reader to prevent crashing on some incorrectly set global encoding WKT flag
#346
Workflow file for this run
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: OSX | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: OSX | |
runs-on: 'macos-latest' | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
init-shell: bash | |
environment-file: ci/environment.yml | |
environment-name: "pdal-build" | |
cache-environment: true | |
cache-downloads: true | |
- name: Setup | |
shell: bash -l {0} | |
run: | | |
mkdir build | |
source ./ci/osx/setup.sh | |
- name: CMake | |
shell: bash -l {0} | |
run: | | |
source ../ci/osx/cmake.sh | |
working-directory: ./build | |
- name: Compile | |
shell: bash -l {0} | |
run: | | |
source ../ci/osx/compile.sh | |
working-directory: ./build | |
- name: Test | |
shell: bash -l {0} | |
run: | | |
source ../ci/osx/test.sh | |
working-directory: ./build | |