From c2f10e7156714c75a50903c17eaa6c76b456ecac Mon Sep 17 00:00:00 2001 From: Tim Saucer Date: Wed, 11 Feb 2026 10:53:09 -0500 Subject: [PATCH] Remove the FFI test wheel from the distribution artifact --- .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 8aeb86f10..b86b37c6e 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 6fd6b02a4..c4bf833ec 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: |