Skip to content

Make all Transform methods of OGRCoordinateTransformation and GDALTransformerFunc return FALSE as soon as one point fails to transform #20375

Make all Transform methods of OGRCoordinateTransformation and GDALTransformerFunc return FALSE as soon as one point fails to transform

Make all Transform methods of OGRCoordinateTransformation and GDALTransformerFunc return FALSE as soon as one point fails to transform #20375

Workflow file for this run

name: MacOS build
on:
push:
paths-ignore:
- 'doc/**'
- 'docker/**'
branches-ignore:
- 'backport**'
- 'dependabot**'
pull_request:
paths-ignore:
- 'doc/**'
- 'docker/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
macos_build:
# Arm64
runs-on: macos-14
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- uses: conda-incubator/setup-miniconda@d2e6a045a86077fb6cad6f5adf368e9076ddaa8d # v3.1.0
with:
channels: conda-forge
auto-update-conda: true
- name: Install Requirements
shell: bash -l {0}
run: |
source ./ci/travis/osx/before_install.sh
- name: Build
shell: bash -l {0}
run: |
source ./ci/travis/osx/install.sh
- name: Run tests
shell: bash -l {0}
run: |
source ./ci/travis/osx/script.sh
env:
# Emulate a few Travis-CI env variable so that some tests get properly skipped
TRAVIS: true
TRAVIS_OS_NAME: osx
BUILD_NAME: macos_build_conda