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

23 lines
493 B
Groovy

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-db')
shell("cd build; cmake ../source/libs -DCMAKE_BUILD_TYPE=release -DCMAKE_TOOLCHAIN_FILE=../source/cmake/iOS.toolchain.cmake -DPACKAGES_DIR=\${PACKAGES_DIR}")
shell('cd build; make compress')
}
}