build with nvidia support

This commit is contained in:
Hyatt 2023-10-28 12:00:33 -05:00
parent bc023799c1
commit d7b7e3b041
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -10,7 +10,13 @@ podTemplate(
repo: repository, repo: repository,
templateName: templateName, templateName: templateName,
alpine: true, alpine: true,
fedora: true [
[
name: "ubi",
path: "${repository}/library/rhubi/ubi:9",
command: "/bin/sh"
]
]
) )
) { ) {
node (label) { node (label) {
@ -45,10 +51,13 @@ podTemplate(
} }
stage ("Build FFMpeg") { stage ("Build FFMpeg") {
container ("fedora") { container ("ubi") {
sh """ 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 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 SKIPINSTALL=yes ./build-ffmpeg --full-static --enable-gpl-and-non-free --build
""" """
} }