Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI Fixes for test_models and SHARK testing #31

Merged
merged 4 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/test_models.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ jobs:
pip install --no-compile --pre --upgrade -r requirements.txt
pip install --no-compile --pre -e .[testing]
pip install --no-compile --pre --upgrade -e ${{ github.workspace }}/SHARK-Turbine/models -r ${{ github.workspace }}/SHARK-Turbine/models/requirements.txt
pip install \
--find-links https://iree.dev/pip-release-links.html \
harsh-nod marked this conversation as resolved.
Show resolved Hide resolved
--upgrade \
iree-compiler \
iree-runtime
- name: Show current free memory
run: |
free -mh
Expand Down Expand Up @@ -85,6 +90,11 @@ jobs:
pip install --no-compile --pre --upgrade -r requirements.txt
pip install --no-compile --pre -e .[testing]
pip install --no-compile --pre --upgrade -e ${{ github.workspace }}/SHARK-Turbine/models -r ${{ github.workspace }}/SHARK-Turbine/models/requirements.txt
pip install \
--find-links https://iree.dev/pip-release-links.html \
--upgrade \
iree-compiler \
iree-runtime
- name: Show current free memory
run: |
free -mh
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test_shark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@ jobs:
- name: "Checkout SHARK"
uses: actions/checkout@v4
with:
repository: "nod-ai/SHARK.git"
repository: "nod-ai/SHARK"
path: SHARK
ref: "iree-turbine-switch"

- name: "Install SHARK"
run: |
Expand Down
Loading