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

23 lines
463 B
Groovy
Raw Normal View History

2017-07-03 09:30:10 +02:00
import common.LibraryReview
def j = new LibraryReview
(
name: 'iOS',
label: 'iOS'
).generate(this)
j.with
{
steps
{
shell('cd source; python resources/jenkins/import.py')
shell('security unlock-keychain \${KEYCHAIN_CREDENTIALS} \${HOME}/Library/Keychains/login.keychain')
shell("cd build; cmake ../source/libs -DCMAKE_TOOLCHAIN_FILE=../source/cmake/iOS.toolchain.cmake -DPACKAGES_DIR=\${PACKAGES_DIR}")
shell('cd build; make compress')
}
}