aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: 364adf7eab2f2ce88255e5fd960ea2c7b2230adb (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/ && make INSTDIR=out install'
			}
		}
	}
	post {
		always {
			archiveArtifacts artifacts: 'out/*', fingerprint: false
		}
	}
}