From 02a7c6b0f4683468b62a78db8e86d0f10c4a2765 Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Mon, 24 Jul 2023 12:31:26 +0800 Subject: [PATCH] small fixes --- .github/workflows/ubuntu-cpu-wheels.yml | 6 +++--- scripts/github_actions/build-ubuntu-cpu.sh | 4 ++-- scripts/github_actions/build-ubuntu-cuda.sh | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ubuntu-cpu-wheels.yml b/.github/workflows/ubuntu-cpu-wheels.yml index 3a1bc6c..3e9dabc 100644 --- a/.github/workflows/ubuntu-cpu-wheels.yml +++ b/.github/workflows/ubuntu-cpu-wheels.yml @@ -105,10 +105,10 @@ jobs: git config --global user.email "csukuangfj@gmail.com" git config --global user.name "Fangjun Kuang" - export GIT_LFS_SKIP_SMUDGE=1 - git clone https://huggingface.co/csukuangfj/kaldifeat huggingface - rm -rf huggingface + + export GIT_LFS_SKIP_SMUDGE=1 + git clone https://huggingface.co/csukuangfj/kaldifeat huggingface cd huggingface git pull diff --git a/scripts/github_actions/build-ubuntu-cpu.sh b/scripts/github_actions/build-ubuntu-cpu.sh index 1b44dcc..b0a03cd 100755 --- a/scripts/github_actions/build-ubuntu-cpu.sh +++ b/scripts/github_actions/build-ubuntu-cpu.sh @@ -30,8 +30,8 @@ if [[ $PYTHON_VERSION =~ 3.1. ]]; then sed -i 's/PKG_CONFIG openssl /PKG_CONFIG openssl11 /g' configure fi -./configure --enable-shared --prefix=$PYTHON_INSTALL_DIR -make install +./configure --enable-shared --prefix=$PYTHON_INSTALL_DIR >/dev/null 2>&1 +make install >/dev/null 2>&1 popd diff --git a/scripts/github_actions/build-ubuntu-cuda.sh b/scripts/github_actions/build-ubuntu-cuda.sh index e812dd0..2d9dab9 100755 --- a/scripts/github_actions/build-ubuntu-cuda.sh +++ b/scripts/github_actions/build-ubuntu-cuda.sh @@ -38,8 +38,8 @@ if [[ $PYTHON_VERSION =~ 3.1. ]]; then sed -i 's/PKG_CONFIG openssl /PKG_CONFIG openssl11 /g' configure fi -./configure --enable-shared --prefix=$PYTHON_INSTALL_DIR -make install +./configure --enable-shared --prefix=$PYTHON_INSTALL_DIR >/dev/null 2>&1 +make install >/dev/null 2>&1 popd