[SEDONA-426] Change raster cloning to be able to include metadata. #1064
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: 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@v4 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Build wheels | |
uses: pypa/cibuildwheel@v2.16.2 | |
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 |