File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -11,20 +11,35 @@ jobs:
1111
1212 steps :
1313 - uses : actions/checkout@master
14+ - name : Space cleanup
15+ env :
16+ DEBIAN_FRONTEND : noninteractive
17+ run : |
18+ df -h
19+
20+ docker rmi `docker images -q`
21+ sudo rm -rf /usr/share/dotnet /etc/mysql /etc/php /etc/apt/sources.list.d
22+ sudo -E apt-get -y purge azure-cli ghc* zulu* hhvm llvm* firefox google* dotnet* powershell openjdk* mysql* php* android*
23+ sudo -E apt-get update
24+ sudo -E apt-get -y autoremove --purge
25+ sudo -E apt-get clean
26+
27+ df -h
1428 - name : Set up Python ${{ matrix.python-version }}
1529 uses : actions/setup-python@v4
1630 with :
1731 python-version : ${{ matrix.python-version }}
1832 - name : Install dependencies
1933 run : |
34+ nvidia-smi
2035 sudo apt update
2136 wget https://github.com/fumiama/RVC-Models-Downloader/releases/download/v0.2.11/rvcmd_linux_amd64.deb
2237 sudo apt -y install ./rvcmd_linux_amd64.deb
2338 pip install --force pip==24.0 # fix fairseq installing issue https://github.com/facebookresearch/fairseq/issues/5552
2439 python -m pip install --upgrade setuptools
2540 python -m pip install --upgrade wheel
2641 pip install torch torchvision torchaudio
27- pip install -r requirements/dml .txt
42+ pip install -r requirements/main .txt
2843 rvcmd -notrs -w 1 -notui assets/rvc
2944 - name : Test step 1 & 2
3045 run : |
You can’t perform that action at this time.
0 commit comments