reverted back to ahving a fall back
Some checks failed
Modulation Recognition Demo / ria-demo (push) Failing after 30s

This commit is contained in:
Liyu Xiao 2025-08-22 09:54:22 -04:00
parent 71a1559dca
commit af2d3fae90

View File

@ -32,13 +32,16 @@ jobs:
- name: Install dependencies (incl. RIA Hub utils) - name: Install dependencies (incl. RIA Hub utils)
run: | run: |
set -e set -e
python -m pip install --upgrade pip python -m pip install --upgrade pip
echo "Trying to install utils from RIA Hub..." echo "Trying to install utils from RIA Hub..."
pip install \ if ! pip install \
--no-cache-dir \
--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
echo "RIA Hub install failed, falling back to local wheel..."
pip install ./wheels/utils-*.whl
fi
pip install -r requirements.txt pip install -r requirements.txt
- name: 1. Generate Recordings - name: 1. Generate Recordings