AusweisApp2/resources/jenkins/dsl/Libraries/Libs_Linux.groovy

19 lines
261 B
Groovy

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