Files
hello-world/Jenkinsfile
T
john d9eabf7c97
hello-world/pipeline/head There was a failure building this commit
Start ai code review
2026-05-03 09:23:22 +01:00

28 lines
515 B
Groovy

pipeline {
agent any
environment {
OPENAI_API_KEY = credentials('OPENAI_API_KEY')
CODEX_MODEL = 'gpt-4'
}
stages {
stage ('AI Code review') {
steps {
sh 'python scripts/ai_code_review.py'
}
}
stage('Configure') {
steps {
sh 'cmake -S . -B build'
}
}
stage('Build') {
steps {
sh 'cmake --build build'
}
}
}
}