Added new yml

This commit is contained in:
Guillem Hernandez Sola
2026-03-30 17:11:01 +02:00
parent 85f72322b4
commit caab210416

View File

@@ -22,8 +22,13 @@ pipeline {
# Activate it and install your packages # Activate it and install your packages
. venv/bin/activate . venv/bin/activate
# 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 moviepy is installed
python3 -c "from moviepy.editor import VideoFileClip" || { 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
''' '''