> For the complete documentation index, see [llms.txt](https://docs.layerlens.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.layerlens.ai/6.-build-wire-your-code/integration-jenkins.md).

# Jenkins

Recipe — Jenkins evaluation gate.

```groovy
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'
 }
 }
 }
}
```

## See also

* [Tutorial 3: CI/CD gates](/6.-build-wire-your-code/03-cicd-gates.md)
