Skip to content

[SEDONA-303] Port all Sedona Spark function to Sedona Flink -- ST_Intersection_Aggr #421

[SEDONA-303] Port all Sedona Spark function to Sedona Flink -- ST_Intersection_Aggr

[SEDONA-303] Port all Sedona Spark function to Sedona Flink -- ST_Intersection_Aggr #421

Workflow file for this run

name: Python build wheels
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
build:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
with:
platforms: all
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: 'pp* *musl*'
CIBW_ARCHS_LINUX: 'x86_64 aarch64'
CIBW_ARCHS_WINDOWS: 'AMD64 ARM64'
CIBW_ARCHS_MACOS: 'x86_64 arm64'
with:
package-dir: python
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl