summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: f919c762a5860e5060b7edae8c23b7433cc30b92 (plain)
1
2
3
4
5
6
7
8
9
10
pipeline {
  agent any
  stages {
    stage('build') {
      steps {
        sshScript(script: '/var/lib/vyos-build/pkg-build.sh', failOnError: true)
      }
    }
  }
}