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

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

  post {
     always {
       deleteDir()
     }
   }
}