Skip to content

Commit

Permalink
new approach
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavsuku-db committed Jul 30, 2024
1 parent ddad60c commit fe7207f
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9]
python-version: [3.7, 3.8, 3.9, 3.10]

steps:
- uses: actions/checkout@v2
Expand All @@ -24,17 +24,27 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install Rust
- name: Install Rust (Linux and macOS)
if: runner.os != 'Windows'
run: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
shell: bash

- name: Install Rust (Windows)
if: runner.os == 'Windows'
run: |
curl https://sh.rustup.rs -sSf -o rustup-init.exe
rustup-init.exe -y
$env:Path += ";C:\Users\runner\.cargo\bin"
shell: powershell

- name: Install maturin
run: pip install maturin

- name: Build wheel
run: |
pwd
cd ../../python/delta-kernel-python
maturin build --release
shell: bash
Expand Down

0 comments on commit fe7207f

Please sign in to comment.