AusweisApp2/resources/jenkins/dsl/Reviews/Review_Libs_Linux.groovy
2017-07-03 09:30:10 +02:00

21 lines
304 B
Groovy

import common.LibraryReview
def j = new LibraryReview
(
name: 'Linux',
label: 'Linux'
).generate(this)
j.with
{
steps
{
shell('cd source; python resources/jenkins/import.py')
shell("cd build; cmake ../source/libs -DPACKAGES_DIR=\${PACKAGES_DIR}")
shell('cd build; make compress')
}
}