mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-09 18:12:19 +00:00
14 lines
306 B
Bash
Executable File
14 lines
306 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script installs kaldifeat into the directory ~/tmp/kaldifeat
|
|
# which is cached by GitHub actions for later runs.
|
|
|
|
mkdir -p ~/tmp
|
|
cd ~/tmp
|
|
git clone https://github.com/csukuangfj/kaldifeat
|
|
cd kaldifeat
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
make -j2 _kaldifeat
|