Install graphviz in docker

This commit is contained in:
Fangjun Kuang 2023-12-23 22:20:00 +08:00
parent f95fcd7d11
commit 9aef34511f
2 changed files with 7 additions and 2 deletions

View File

@ -14,6 +14,7 @@ RUN apt-get update -y && \
ffmpeg \ ffmpeg \
git \ git \
git-lfs \ git-lfs \
graphviz \
less \ less \
vim \ vim \
&& \ && \

View File

@ -15,10 +15,10 @@ jobs:
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10"] python-version: ["3.8", "3.9", "3.10"]
torch-version: ["1.13.0", "2.0.0", "2.0.1", "2.1.0", "2.1.1", "2.1.2"] torch-version: ["1.13.0", "1.13.1", "2.0.0", "2.0.1", "2.1.0", "2.1.1", "2.1.2"]
k2-version: ["1.24.4.dev20231220"] k2-version: ["1.24.4.dev20231220"]
kaldifeat-version: ["1.25.3.dev20231221"] kaldifeat-version: ["1.25.3.dev20231221"]
version: ["1.0"] version: ["1.1"]
steps: steps:
# refer to https://github.com/actions/checkout # refer to https://github.com/actions/checkout
@ -45,8 +45,12 @@ jobs:
run: | run: |
cd .github/scripts/docker cd .github/scripts/docker
torch_version=${{ matrix.torch-version }} torch_version=${{ matrix.torch-version }}
# see https://pytorch.org/audio/stable/installation.html#compatibility-matrix
if [[ $torch_version == 1.13.0 ]]; then if [[ $torch_version == 1.13.0 ]]; then
torchaudio_version=0.13.0 torchaudio_version=0.13.0
elif [[ $torch_version == 1.13.1 ]]; then
torchaudio_version=0.13.1
elif [[ $torch_version == 2.0.0 ]]; then elif [[ $torch_version == 2.0.0 ]]; then
torchaudio_version=2.0.1 torchaudio_version=2.0.1
elif [[ $torch_version == 2.0.1 ]]; then elif [[ $torch_version == 2.0.1 ]]; then