From d6a692b6a60fd9bdd4ccbcf0969084ea09532e4a Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sat, 28 Oct 2023 12:57:55 -0500 Subject: [PATCH] adds ca to curl --- build-ffmpeg.jenkins | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-ffmpeg.jenkins b/build-ffmpeg.jenkins index e917248..b34c42f 100644 --- a/build-ffmpeg.jenkins +++ b/build-ffmpeg.jenkins @@ -46,17 +46,19 @@ podTemplate( stage ("Build FFMpeg") { container ("fedora") { + writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getCurrentRootCA()) sh """ 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 \ + --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 - 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 - 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 """ }