Added new yml

This commit is contained in:
Guillem Hernandez Sola
2026-03-29 18:13:30 +02:00
parent 67842ee7f2
commit 7626e123bf

View File

@@ -14,10 +14,17 @@ pipeline {
} }
} }
stage('Install Dependencies') { stage('Setup Python & Install Dependencies') {
steps { steps {
sh ''' sh '''
# Create a virtual environment named 'venv'
python3 -m venv venv
# Activate it and install your packages
. venv/bin/activate
pip install -U atproto tweety-ns playwright httpx arrow python-dotenv -q pip install -U atproto tweety-ns playwright httpx arrow python-dotenv -q
# Install the local browser binaries for this environment
playwright install chromium playwright install chromium
''' '''
} }