aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: 8bfd3f4b87ba33f66955c6acb42117aca4f69ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// vi: ft=groovy
pipeline {
	agent any
	stages {
		stage('Build Plugins') {
			steps {
				sh 'mkdir -p out/ && INSTDIR=out/ make install'
			}
		}
	}
	post {
		always {
			archiveArtifacts artifacts: 'out/*', fingerprint: false
		}
	}
}