added a wheel file as a fallback for installation
All checks were successful
Modulation Recognition Demo / ria-demo (pull_request) Successful in 2m53s

This commit is contained in:
Liyu Xiao 2025-07-08 09:44:51 -04:00
parent 1b54b6f925
commit 8ac05ac981
2 changed files with 11 additions and 3 deletions

View File

@ -33,11 +33,19 @@ jobs:
- name: Install dependencies (incl. RIA Hub utils) - name: Install dependencies (incl. RIA Hub utils)
run: | run: |
set -e
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install \
echo "Trying to install utils from RIA Hub..."
if ! pip install \
--index-url "https://${{ secrets.RIAHUB_USER }}:${{ secrets.RIAHUB_TOKEN }}@git.riahub.ai/api/packages/qoherent/pypi/simple/" \ --index-url "https://${{ secrets.RIAHUB_USER }}:${{ secrets.RIAHUB_TOKEN }}@git.riahub.ai/api/packages/qoherent/pypi/simple/" \
utils \ utils; then
-r requirements.txt echo "RIA Hub install failed, falling back to local wheel..."
pip install ./wheels/utils-*.whl
fi
pip install -r requirements.txt
- name: 1. Generate Recordings - name: 1. Generate Recordings
run: | run: |

Binary file not shown.