This is an automated email from the ASF dual-hosted git repository.
timsaucer pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-python.git
The following commit(s) were added to refs/heads/main by this push:
new 95b4a00f Remove the FFI test wheel from the distribution artifact
(#1378)
95b4a00f is described below
commit 95b4a00f7a315aa4d463566ad9096242da086211
Author: Tim Saucer <[email protected]>
AuthorDate: Wed Feb 11 11:36:56 2026 -0500
Remove the FFI test wheel from the distribution artifact (#1378)
---
.github/workflows/build.yml | 8 ++++++--
.github/workflows/test.yml | 7 +++++++
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8aeb86f1..b86b37c6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -176,14 +176,18 @@ jobs:
args: --out dist
rustup-components: rust-std
- - run: cp examples/datafusion-ffi-example/dist/*.whl dist/
-
- name: Archive wheels
uses: actions/upload-artifact@v6
with:
name: dist-manylinux-x86_64
path: dist/*
+ - name: Archive FFI test wheel
+ uses: actions/upload-artifact@v6
+ with:
+ name: test-ffi-manylinux-x86_64
+ path: examples/datafusion-ffi-example/dist/*
+
# ============================================
# Build - Linux ARM64
# ============================================
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6fd6b02a..c4bf833e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -86,6 +86,13 @@ jobs:
name: dist-manylinux-x86_64
path: wheels/
+ # Download the FFI test wheel
+ - name: Download pre-built FFI test wheel
+ uses: actions/download-artifact@v7
+ with:
+ name: test-ffi-manylinux-x86_64
+ path: wheels/
+
# Install from the pre-built wheels
- name: Install from pre-built wheels
run: |
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]