Files
pictest/Jenkinsfile
T
john 864aa8c15f
pictest/pipeline/head There was a failure building this commit
Add jenkins
2026-05-03 10:18:31 +01:00

20 lines
426 B
Groovy

pipeline {
agent any
environment {
OPENAI_API_KEY = credentials('OPENAI_API_KEY')
GITEA_TOKEN = credentials('GITEA_TOKEN')
GITEA_URL = 'https://git.jb9.uk'
CODEX_MODEL = 'gpt-4'
AI_REVIEW_FAIL_ON_FINDINGS = 'false'
}
stages {
stage ('AI Code review') {
steps {
sh 'python3 scripts/ai_code_review.py'
}
}
}
}