From 13f59ae6b4249f40e17e93b08a9677cc236535df Mon Sep 17 00:00:00 2001 From: Shaojun Liu <61072813+liu-shaojun@users.noreply.github.com> Date: Thu, 27 Jun 2024 14:12:14 +0800 Subject: [PATCH] Fix llm binary build linux-build-avxvnni failure (#11447) * skip gpg check failure * skip gpg check --- .github/workflows/llm-binary-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/llm-binary-build.yml b/.github/workflows/llm-binary-build.yml index c38a9a66..71d22dca 100644 --- a/.github/workflows/llm-binary-build.yml +++ b/.github/workflows/llm-binary-build.yml @@ -71,7 +71,7 @@ jobs: run: | export http_proxy=${HTTP_PROXY} export https_proxy=${HTTPS_PROXY} - yum install -y gcc-toolset-11 cmake git + yum install --nogpgcheck -y gcc-toolset-11 cmake git - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3 with: repository: "intel-analytics/llm.cpp" @@ -139,7 +139,7 @@ jobs: run: | export http_proxy=${HTTP_PROXY} export https_proxy=${HTTPS_PROXY} - yum install -y gcc-toolset-11 cmake git + yum install --nogpgcheck -y gcc-toolset-11 cmake git conda remove -n python39 --all -y conda create -n python39 python=3.9 -y - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3 @@ -241,7 +241,7 @@ jobs: run: | export http_proxy=${HTTP_PROXY} export https_proxy=${HTTPS_PROXY} - yum install -y gcc-toolset-11 cmake git + yum install --nogpgcheck -y gcc-toolset-11 cmake git - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3 with: repository: "intel-analytics/llm.cpp"