Start ai code review
hello-world/pipeline/head There was a failure building this commit

This commit is contained in:
2026-05-03 09:23:22 +01:00
parent 4d255fdcad
commit d9eabf7c97
Vendored
+11
View File
@@ -1,7 +1,18 @@
pipeline { pipeline {
agent any agent any
environment {
OPENAI_API_KEY = credentials('OPENAI_API_KEY')
CODEX_MODEL = 'gpt-4'
}
stages { stages {
stage ('AI Code review') {
steps {
sh 'python scripts/ai_code_review.py'
}
}
stage('Configure') { stage('Configure') {
steps { steps {
sh 'cmake -S . -B build' sh 'cmake -S . -B build'