Skip to content
Snippets Groups Projects
Jenkinsfile 211 B
Newer Older
pipeline {
  agent any

  options {
    ansiColor('xterm')
  }

  stages {
    stage('build') {
      steps {
        build 'reticulum'
      }
    }
  }

  post {
     always {
       deleteDir()
     }
   }
}