removes cuda stuff

This commit is contained in:
Hyatt 2023-10-28 22:01:26 -05:00
parent 1c22c1cbe2
commit 856ae3544f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -47,19 +47,9 @@ podTemplate(
stage ("Build FFMpeg") { stage ("Build FFMpeg") {
container ("fedora") { container ("fedora") {
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getCurrentRootCA()) writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getCurrentRootCA())
println("Building with CUDA from https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&Distribution=Fedora&target_version=37&target_type=runfile_local")
sh """ sh """
cd ${workspace}/ffmpeg cd ${workspace}/ffmpeg
dnf install curl gcc-g++ libtool make xz python perl perl-devel openssl-devel diffutils bzip2 glibc-static libstdc++-static -y dnf install curl gcc-g++ libtool make xz python perl perl-devel openssl-devel diffutils bzip2 glibc-static libstdc++-static -y
curl \
--cacert ${workspace}/test-chamber-13.lan.root.crt \
--fail \
--silent \
--location \
--output /tmp/cuda-lib-installer.sh \
https://nexus.c.test-chamber-13.lan/repository/generic/nvidia/cuda-libraries.run
/usr/bin/bash /tmp/cuda-lib-installer.sh --silent --toolkit --override
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
""" """
} }