Skip to content

Commit

Permalink
Install x86_64-apple-darwin target before building bindings on `mac…
Browse files Browse the repository at this point in the history
…os-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
  • Loading branch information
charlesbluca authored Apr 26, 2024
1 parent b473fd6 commit f1b4d93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ jobs:
channel-priority: strict
activate-environment: dask-sql
environment-file: ${{ env.CONDA_FILE }}
- name: Install x86_64-apple-darwin target
if: matrix.os == 'macos-latest'
run: rustup target add x86_64-apple-darwin
- name: Build the Rust DataFusion bindings
run: |
maturin develop
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ jobs:
with:
workspaces: dask_planner
shared-key: test
- name: Install x86_64-apple-darwin target
if: matrix.os == 'macos-latest'
run: rustup target add x86_64-apple-darwin
- name: Build the Rust DataFusion bindings
run: |
maturin develop
Expand Down

0 comments on commit f1b4d93

Please sign in to comment.