switch fedora
This commit is contained in:
parent
d7b7e3b041
commit
40d302e641
@ -10,13 +10,7 @@ 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) {
|
||||||
@ -51,11 +45,16 @@ podTemplate(
|
|||||||
}
|
}
|
||||||
|
|
||||||
stage ("Build FFMpeg") {
|
stage ("Build FFMpeg") {
|
||||||
container ("ubi") {
|
container ("fedora") {
|
||||||
sh """
|
sh """
|
||||||
dnf install 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
|
||||||
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
|
curl \
|
||||||
|
--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
|
/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
|
||||||
|
Reference in New Issue
Block a user