diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 4bd35a4..31cd34a 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -78,14 +78,22 @@ jobs: image: nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04 needs: cmake-build steps: - - name: Install build deps + - name: Bootstrap Node 20 + git (для actions/checkout) run: | export DEBIAN_FRONTEND=noninteractive apt-get update + apt-get install -y --no-install-recommends curl git ca-certificates gnupg + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt-get install -y --no-install-recommends nodejs + node --version + + - name: Install build deps + run: | + export DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - build-essential cmake ninja-build pkg-config git nasm \ + build-essential cmake ninja-build pkg-config nasm \ libssl-dev libx264-dev libx265-dev libnuma-dev zlib1g-dev \ - ca-certificates wget patch + wget patch - name: Checkout uses: actions/checkout@v4