Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Liu <[email protected]>
  • Loading branch information
austin362667 committed May 10, 2024
1 parent 834d797 commit 24346af
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,15 @@ jobs:
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements files
key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('dev-requirements.in', 'requirements.in')) }}
- name: Build and Install Rust client
- name: Build Rust client
working-directory: flyrs
run: |
pip install maturin
. .venv/bin/activate
maturin develop --release
maturin build --release
- name: Install dependencies
run: |
make setup
pip uninstall -y grpcio grpcio-status
pip install flyrs
pip freeze
- name: Test Rust Flytekit Remote Client
run: |
Expand Down Expand Up @@ -216,15 +215,15 @@ jobs:
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements files
key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('dev-requirements.in', 'requirements.in')) }}
- name: Build and Install Rust client
- name: Build Rust client
working-directory: flyrs
run: |
pip install maturin
. .venv/bin/activate
maturin develop --release
maturin build --release
- name: Install dependencies
run: |
make setup
pip install flyrs
pip freeze
- name: Test Rust Flytekit Remote Client
run: |
Expand Down

0 comments on commit 24346af

Please sign in to comment.