From d7b7e3b04145bbeb8592499d2758a05d5299bb66 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sat, 28 Oct 2023 12:00:33 -0500 Subject: [PATCH] build with nvidia support --- build-ffmpeg.jenkins | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/build-ffmpeg.jenkins b/build-ffmpeg.jenkins index c6a0aba..2a44d28 100644 --- a/build-ffmpeg.jenkins +++ b/build-ffmpeg.jenkins @@ -10,7 +10,13 @@ podTemplate( repo: repository, templateName: templateName, alpine: true, - fedora: true + [ + [ + name: "ubi", + path: "${repository}/library/rhubi/ubi:9", + command: "/bin/sh" + ] + ] ) ) { node (label) { @@ -45,10 +51,13 @@ podTemplate( } stage ("Build FFMpeg") { - container ("fedora") { + container ("ubi") { sh """ - dnf install curl gcc-g++ libtool make xz python perl perl-devel openssl-devel diffutils bzip2 glibc-static libstdc++-static -y + dnf install gcc-g++ libtool make xz python perl perl-devel openssl-devel diffutils bzip2 glibc-static libstdc++-static -y cd ${workspace}/ffmpeg + curl -L https://nexus.c.test-chamber-13.lan/repository/generic/nvidia/cuda-libraries.run -o /tmp/cuda-lib-installer.sh + /usr/bin/bash /tmp/cuda-lib-installer.sh --silent --toolkit + export PATH="${PATH}:/usr/local/cuda/bin" SKIPINSTALL=yes ./build-ffmpeg --full-static --enable-gpl-and-non-free --build """ }