Added new yml

This commit is contained in:
Guillem Hernandez Sola
2026-03-30 17:17:32 +02:00
parent 3343792538
commit 9f4d2bc95d

View File

@@ -26,8 +26,11 @@ pipeline {
# Install required packages # Install required packages
pip install -U atproto tweety-ns playwright httpx arrow python-dotenv moviepy pip install -U atproto tweety-ns playwright httpx arrow python-dotenv moviepy
# Check if FFmpeg is installed
ffmpeg -version || { echo 'FFmpeg is not installed!'; exit 1; }
# Check if moviepy is installed # Check if moviepy is installed
python3 -c "from moviepy.editor import VideoFileClip" || { echo 'MoviePy installation failed!'; exit 1; } python3 -c "import moviepy.editor" || { echo 'MoviePy installation failed!'; exit 1; }
# Install the local browser binaries for this environment # Install the local browser binaries for this environment
playwright install chromium playwright install chromium