build with nvidia support
This commit is contained in:
parent
bc023799c1
commit
d7b7e3b041
@ -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
|
||||
"""
|
||||
}
|
||||
|
Reference in New Issue
Block a user