Skip to content

Commit

Permalink
use workflow-dispatch for builder
Browse files Browse the repository at this point in the history
default to 17,0.0
  • Loading branch information
xmatthias authored Jul 20, 2024
1 parent e5849c6 commit 7bddeae
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@ on:
branches:
- main
- ci/*
tags:
pull_request:
workflow_dispatch:
inputs:
arrow_version:
type: string
description: Arrow version to build
required: true
default: "17.0.0"


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -19,6 +26,8 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.9", "3.11"]
env:
ARROW_VERSION: ${{ github.event.inputs.arrow_version || '17.0.0' }}

steps:
- uses: actions/checkout@v4
Expand All @@ -40,6 +49,7 @@ jobs:
docker buildx build -f Dockerfile \
--platform linux/arm/v7 \
--build-arg PYTHON_VERSION=${{ matrix.python-version }} \
--build-arg ARROW_VERSION=${{ env.ARROW_VERSION }} \
--load \
-t pyarrow:wheel .
Expand Down

0 comments on commit 7bddeae

Please sign in to comment.