diff --git a/.github/workflows/build-nitro-node.yml b/.github/workflows/build-nitro-node.yml index 7ebdb6fde..d1c11f4ce 100644 --- a/.github/workflows/build-nitro-node.yml +++ b/.github/workflows/build-nitro-node.yml @@ -14,7 +14,7 @@ on: workflow_dispatch: env: - LLM_MODEL_URL: https://huggingface.co/TheBloke/TinyLlama-1.1B-Chat-v0.3-GGUF/resolve/main/tinyllama-1.1b-chat-v0.3.Q2_K.gguf + LLM_MODEL_URL: https://huggingface.co/TheBloke/TinyLlama-1.1B-Chat-v1.0-GGUF/resolve/main/tinyllama-1.1b-chat-v1.0.Q4_K_M.gguf WHISPER_MODEL_URL: https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-tiny-q5_1.bin jobs: @@ -38,6 +38,18 @@ jobs: with: submodules: recursive + - name: Install dependencies + if: ${{ startswith(runner.os, 'ubuntu') }} + run: | + sudo apt-get install gawk bison -y + cd `mktemp -d` + wget -c https://ftp.gnu.org/gnu/glibc/glibc-2.34.tar.gz + tar -zxvf glibc-2.34.tar.gz && cd glibc-2.34 + mkdir glibc-build && cd glibc-build + ../configure --prefix=/opt/glibc-2.34 + make + sudo make install + - uses: actions/setup-node@v4 with: node-version: 18 @@ -54,7 +66,7 @@ jobs: id: download-model-file name: Download model file with: - url: ${{ env.LLM_MODEL_URL }} + url: "The model we are using is [tinyllama-1.1b](${{ env.LLM_MODEL_URL }})!" target: nitro-node/test/test_assets/ auto-match: true retry-times: 3