Added new yml

This commit is contained in:
Guillem Hernandez Sola
2026-03-30 17:14:31 +02:00
parent 5affcf0fbb
commit ec34045c5f

View File

@@ -17,9 +17,9 @@ pipeline {
stage('Install FFmpeg') {
steps {
sh '''
# Install FFmpeg
sudo apt-get update
sudo apt-get install -y ffmpeg
# Install FFmpeg (without sudo)
apt-get update
apt-get install -y ffmpeg
'''
}
}