Files
post2bsky/jenkins/divendres
Guillem Hernandez Sola a5728ddfa4 fall-back
2026-05-08 14:19:57 +02:00

60 lines
1.9 KiB
Plaintext

pipeline {
agent any
triggers {
// Every Friday at 07:15
cron('15 7 * * 5')
}
options {
timeout(time: 15, unit: 'MINUTES')
timestamps()
buildDiscarder(logRotator(numToKeepStr: '10'))
disableConcurrentBuilds()
}
stages {
stage('Install dependencies') {
steps {
sh """
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip --quiet
pip install --quiet atproto requests
"""
}
}
stage('Post Divendres') {
steps {
// Securely injects Jenkins credentials as environment variables
// Note the added curly braces wrapping the sh block
withCredentials([
string(credentialsId: 'BSKY_GROMENAWARE_HANDLE', variable: 'BSKY_GROMENAWARE_HANDLE'),
string(credentialsId: 'BSKY_GROMENAWARE_APP_PASSWORD', variable: 'BSKY_GROMENAWARE_APP_PASSWORD')
]) {
sh """
. venv/bin/activate
python3 bsky_post.py "DIVENDRES!!!!!!" \\
--username "\$BSKY_GROMENAWARE_HANDLE" \\
--password "\$BSKY_GROMENAWARE_APP_PASSWORD" \\
--video media/divendres.mp4 \\
--alt "DIVENDRES!!" \\
--lang ca \\
--service https://eurosky.social \\
--allow-pds-video-fallback
"""
}
}
}
}
post {
success {
echo '✅ Divendres post published successfully.'
}
failure {
echo '❌ Divendres post failed.'
}
}
}