adds ca to curl

This commit is contained in:
Hyatt 2023-10-28 12:57:55 -05:00
parent 915b0d12c5
commit d6a692b6a6
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -46,17 +46,19 @@ podTemplate(
stage ("Build FFMpeg") { stage ("Build FFMpeg") {
container ("fedora") { container ("fedora") {
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getCurrentRootCA())
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
curl \ curl \
--cacert ${workspace}/test-chamber-13.lan.root.crt \
--fail \ --fail \
--silent \ --silent \
--location \ --location \
--output /tmp/cuda-lib-installer.sh \ --output /tmp/cuda-lib-installer.sh \
https://nexus.c.test-chamber-13.lan/repository/generic/nvidia/cuda-libraries.run https://nexus.c.test-chamber-13.lan/repository/generic/nvidia/cuda-libraries.run
dnf install curl gcc-g++ libtool make xz python perl perl-devel openssl-devel diffutils bzip2 glibc-static libstdc++-static -y
/usr/bin/bash /tmp/cuda-lib-installer.sh --silent --toolkit /usr/bin/bash /tmp/cuda-lib-installer.sh --silent --toolkit
export PATH="${PATH}:/usr/local/cuda/bin" 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
""" """
} }