forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup test run installing wheel on CI
- Loading branch information
1 parent
065a6da
commit 644ebc5
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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__)" |
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