Skip to content

Commit f1b4d93

Browse files
authored
Install x86_64-apple-darwin target before building bindings on macos-latest (#1329)
* Bump CI * Try installing x86_64-apple-darwin target before compilation * Install target in upstream testing workflow * Trigger wheel builds * Don't need any changes to release workflow
1 parent b473fd6 commit f1b4d93

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/test-upstream.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ jobs:
5656
channel-priority: strict
5757
activate-environment: dask-sql
5858
environment-file: ${{ env.CONDA_FILE }}
59+
- name: Install x86_64-apple-darwin target
60+
if: matrix.os == 'macos-latest'
61+
run: rustup target add x86_64-apple-darwin
5962
- name: Build the Rust DataFusion bindings
6063
run: |
6164
maturin develop

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ jobs:
8383
with:
8484
workspaces: dask_planner
8585
shared-key: test
86+
- name: Install x86_64-apple-darwin target
87+
if: matrix.os == 'macos-latest'
88+
run: rustup target add x86_64-apple-darwin
8689
- name: Build the Rust DataFusion bindings
8790
run: |
8891
maturin develop

0 commit comments

Comments
 (0)