mirror of https://github.com/coqui-ai/TTS.git
ci: switch back from uv to pip
Reverts c59f0ca1ce
(#13)
Too many CI test timeouts from installing torch/nvidia packages with uv:
https://github.com/astral-sh/uv/issues/1912
This commit is contained in:
parent
dd3768d4b1
commit
00f8d47bcf
|
@ -38,14 +38,14 @@ jobs:
|
||||||
sudo apt-get install -y --no-install-recommends git make gcc
|
sudo apt-get install -y --no-install-recommends git make gcc
|
||||||
make system-deps
|
make system-deps
|
||||||
- name: Install/upgrade Python setup deps
|
- name: Install/upgrade Python setup deps
|
||||||
run: python3 -m pip install --upgrade pip setuptools wheel uv
|
run: python3 -m pip install --upgrade pip setuptools wheel
|
||||||
- name: Replace scarf urls
|
- name: Replace scarf urls
|
||||||
if: contains(fromJSON('["data_tests", "inference_tests", "test_aux", "test_tts", "test_tts2", "test_xtts", "test_zoo0", "test_zoo1", "test_zoo2"]'), matrix.subset)
|
if: contains(fromJSON('["data_tests", "inference_tests", "test_aux", "test_tts", "test_tts2", "test_xtts", "test_zoo0", "test_zoo1", "test_zoo2"]'), matrix.subset)
|
||||||
run: |
|
run: |
|
||||||
sed -i 's/https:\/\/coqui.gateway.scarf.sh\//https:\/\/github.com\/coqui-ai\/TTS\/releases\/download\//g' TTS/.models.json
|
sed -i 's/https:\/\/coqui.gateway.scarf.sh\//https:\/\/github.com\/coqui-ai\/TTS\/releases\/download\//g' TTS/.models.json
|
||||||
- name: Install TTS
|
- name: Install TTS
|
||||||
run: |
|
run: |
|
||||||
python3 -m uv pip install --system "TTS[all] @ ."
|
python3 -m pip install .[all]
|
||||||
python3 setup.py egg_info
|
python3 setup.py egg_info
|
||||||
- name: Unit tests
|
- name: Unit tests
|
||||||
run: make ${{ matrix.subset }}
|
run: make ${{ matrix.subset }}
|
||||||
|
|
Loading…
Reference in New Issue