mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-09-05 07:04:18 +00:00
Install graphviz in docker
This commit is contained in:
parent
f95fcd7d11
commit
9aef34511f
1
.github/scripts/docker/Dockerfile
vendored
1
.github/scripts/docker/Dockerfile
vendored
@ -14,6 +14,7 @@ RUN apt-get update -y && \
|
|||||||
ffmpeg \
|
ffmpeg \
|
||||||
git \
|
git \
|
||||||
git-lfs \
|
git-lfs \
|
||||||
|
graphviz \
|
||||||
less \
|
less \
|
||||||
vim \
|
vim \
|
||||||
&& \
|
&& \
|
||||||
|
8
.github/workflows/build-cpu-docker.yml
vendored
8
.github/workflows/build-cpu-docker.yml
vendored
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user