added a wheel file as a fallback for installation
All checks were successful
Modulation Recognition Demo / ria-demo (pull_request) Successful in 2m53s
All checks were successful
Modulation Recognition Demo / ria-demo (pull_request) Successful in 2m53s
This commit is contained in:
parent
1b54b6f925
commit
8ac05ac981
|
@ -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: |
|
||||||
|
|
BIN
wheels/utils-0.1.2.dev0-py3-none-any (3).whl
Normal file
BIN
wheels/utils-0.1.2.dev0-py3-none-any (3).whl
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user