Skip to content

Commit

Permalink
setup test run installing wheel on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed May 22, 2024
1 parent 065a6da commit 644ebc5
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,34 @@ jobs:
- name: Test
shell: bash
run: ci/scripts/python_test.sh $(pwd) $(pwd)/build


macos_debug:
name: macOS 11 debug wheels
runs-on: macos-11
timeout-minutes: 60
steps:
# - name: Checkout Arrow
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# submodules: recursive
- name: Setup Python
uses: actions/[email protected]
with:
python-version: '3.11'
- name: Install Dependencies
shell: bash
run: |
python -m pip install pyarrow
# - name: Build
# shell: bash
# run: |
# python -m pip install wheel
# ci/scripts/cpp_build.sh $(pwd) $(pwd)/build
# ci/scripts/python_build.sh $(pwd) $(pwd)/build
- name: Test
shell: bash
# run: ci/scripts/python_test.sh $(pwd) $(pwd)/build
run: |
python -c "import pyarrow; print(pyarrow.__version__)"
2 changes: 1 addition & 1 deletion dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ tasks:
arrow_jemalloc: "ON"
python_version: "{{ python_version }}"
macos_deployment_target: "{{ macos_version }}"
runs_on: "macos-13"
runs_on: "macos-11"
vcpkg_arch: "amd64"
artifacts:
- pyarrow-{no_rc_version}-{{ python_tag }}-{{ abi_tag }}-{{ platform_tag }}.whl
Expand Down

0 comments on commit 644ebc5

Please sign in to comment.