Files
hello-world/Jenkinsfile
T
john d79fe3d9a1
hello-world/pipeline/head There was a failure building this commit
Fix jenkinsfile
2026-05-03 09:26:47 +01:00

28 lines
516 B
Groovy

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