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

19 lines
261 B
Groovy
Raw Normal View History

2017-07-03 09:30:10 +02:00
import common.Library
def j = new Library
(
name: 'MacOS',
label: 'MacOS'
).generate(this)
j.with
{
steps
{
2017-07-03 09:33:28 +02:00
shell("cd build; cmake ../source/libs -DCMAKE_BUILD_TYPE=release -DPACKAGES_DIR=\${PACKAGES_DIR}")
2017-07-03 09:30:10 +02:00
shell('cd build; make compress')
}
}