mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-22 21:09:58 +00:00
Set the lance-format fury repo for most places that are downloading. For uploading, it is kept unchanged since lancedb is published to lancedb fury.
27 lines
741 B
YAML
27 lines
741 B
YAML
# We create a composite action to be re-used both for testing and for releasing
|
|
name: build_wheel
|
|
description: "Build a lance wheel"
|
|
inputs:
|
|
python-minor-version:
|
|
description: "8, 9, 10, 11"
|
|
required: true
|
|
args:
|
|
description: "--release"
|
|
required: false
|
|
default: ""
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install macos dependency
|
|
shell: bash
|
|
run: |
|
|
brew install protobuf
|
|
- name: Build wheel
|
|
uses: PyO3/maturin-action@v1
|
|
with:
|
|
command: build
|
|
# TODO: pass through interpreter
|
|
args: ${{ inputs.args }}
|
|
docker-options: "-e PIP_EXTRA_INDEX_URL='https://pypi.fury.io/lance-format/ https://pypi.fury.io/lancedb/'"
|
|
working-directory: python
|