Jenkins
Recipe — Jenkins evaluation gate.
Last updated
Was this helpful?
Recipe — Jenkins evaluation gate.
pipeline {
agent any
environment { LAYERLENS_STRATIX_API_KEY = credentials('layerlens-key') }
stages {
stage('AI Eval') {
steps {
sh 'pip install layerlens --extra-index-url https://sdk.layerlens.ai/package'
sh 'python scripts/ci-eval.py'
}
}
}
}Last updated
Was this helpful?
Was this helpful?