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

23 lines
368 B
Groovy
Raw Normal View History

2017-07-03 09:30:10 +02:00
import common.Review
def j = new Review
(
name: 'Source',
label: 'Common',
artifacts: 'build/*.tar.gz'
).generate(this)
j.with
{
2017-12-20 14:54:05 +01:00
concurrentBuild()
2017-07-03 09:30:10 +02:00
steps
{
shell('cd source; python resources/jenkins/import.py')
2017-12-20 14:54:05 +01:00
shell('cd build; cmake -Werror=dev ../source -DCMAKE_BUILD_TYPE=release -Dtools.only=true')
2017-07-03 09:30:10 +02:00
shell('cd build; make package_source')
}
}