AusweisApp2/resources/jenkins/dsl/Reviews/Review_Libs_FreeBSD.groovy

21 lines
335 B
Groovy

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