File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff 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 # ============================================
Original file line number Diff line number Diff line change 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 : |
You can’t perform that action at this time.
0 commit comments