Skip to content

Commit 95b4a00

Browse files
authored
Remove the FFI test wheel from the distribution artifact (#1378)
1 parent 3f89704 commit 95b4a00

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,18 @@ jobs:
176176
args: --out dist
177177
rustup-components: rust-std
178178

179-
- run: cp examples/datafusion-ffi-example/dist/*.whl dist/
180-
181179
- name: Archive wheels
182180
uses: actions/upload-artifact@v6
183181
with:
184182
name: dist-manylinux-x86_64
185183
path: dist/*
186184

185+
- name: Archive FFI test wheel
186+
uses: actions/upload-artifact@v6
187+
with:
188+
name: test-ffi-manylinux-x86_64
189+
path: examples/datafusion-ffi-example/dist/*
190+
187191
# ============================================
188192
# Build - Linux ARM64
189193
# ============================================

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,13 @@ jobs:
8686
name: dist-manylinux-x86_64
8787
path: wheels/
8888

89+
# Download the FFI test wheel
90+
- name: Download pre-built FFI test wheel
91+
uses: actions/download-artifact@v7
92+
with:
93+
name: test-ffi-manylinux-x86_64
94+
path: wheels/
95+
8996
# Install from the pre-built wheels
9097
- name: Install from pre-built wheels
9198
run: |

0 commit comments

Comments
 (0)