Skip to content

Commit

Permalink
Add CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
stellaraccident committed Apr 21, 2024
1 parent ba15477 commit 1d96a51
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 3 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CI

on:
workflow_dispatch:
pull_request:
push:
branches:
- main

concurrency:
# A PR number if a pull request and otherwise the commit hash. This cancels
# queued and in-progress runs for the same PR (presubmit) or commit
# (postsubmit). The workflow name is prepended to avoid conflicts between
# different workflows.
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true

jobs:
test:
name: "Unit Tests and Type Checking"
strategy:
matrix:
version: [3.11]
os: [ubuntu-latest]

runs-on: ${{matrix.os}}
steps:
- name: "Setting up Python"
uses: actions/setup-python@v3
with:
python-version: ${{matrix.version}}

- name: "Checkout Code"
uses: actions/checkout@v3

- name: Sync source deps
run: |
python -m pip install --upgrade pip
# Note: We install in three steps in order to satisfy requirements
# from non default locations first. Installing the PyTorch CPU
# wheels saves multiple minutes and a lot of bandwidth on runner setup.
pip install -r pytorch-cpu-requirements.txt
pip install -f https://iree.dev/pip-release-links.html --src deps \
-e "git+https://github.com/nod-ai/SHARK-Turbine.git#egg=SHARK-Turbine&subdirectory=core"
pip install -e sharktank/ shortfin/
- name: Run sharkfin tests
if: ${{ !cancelled() }}
run: |
pytest -n 4 sharkfin/
- name: Run shortfin tests
if: ${{ !cancelled() }}
run: |
pytest -n 4 shortfin/
# TODO: Enable type checking of sharktank
- name: MyPy Type Checking Shortfin
if: ${{ !cancelled() }}
run: |
(cd shortfin && mypy)
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ build-*/
# Python
__pycache__
_python_build/
deps/
dist/
wheelhouse
*.egg-info
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,12 @@ This assumes you have `SHARK-Turbine` checked out adjacent (note that for the
moment we rely on pre-release versions, so installation is a bit harder).

```
pip install -f https://iree.dev/pip-release-links.html -e ../SHARK-Turbine/core/
pip install -e sharktank
pip install -e shortfin
# Clone and install editable SHARK-Turbine dep in deps/
pip install -f https://iree.dev/pip-release-links.html --src deps \
-e "git+https://github.com/nod-ai/SHARK-Turbine.git#egg=SHARK-Turbine&subdirectory=core"
# Install editable local projects.
pip install -e sharktank/ shortfin/
```

### Running Tests
Expand Down
1 change: 1 addition & 0 deletions turbine-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-e "git+https://github.com/nod-ai/SHARK-Turbine.git#egg=SHARK-Turbine&subdirectory=core"

0 comments on commit 1d96a51

Please sign in to comment.