pipeline {
  agent any

  stages {
    stage('Primust Verify') {
      steps {
        sh '''
          python3 -m pip install primust primust-verify
          primust doctor --headless --offline
          primust verify ./agent.gec.json --production --min-surface 0.85 --forbid-gap G-017,G-045
        '''
      }
    }
  }
}
