AusweisApp2/resources/jenkins/dsl/Releases/Release_iOS.groovy
2017-07-03 09:30:10 +02:00

32 lines
719 B
Groovy

import common.Release
import static common.Constants.strip
def j = new Release
(
name: 'iOS_IPA',
libraries: 'iOS',
label: 'iOS',
artifacts: 'build/*.ipa'
).generate(this)
j.with
{
steps
{
shell('security unlock-keychain ${KEYCHAIN_CREDENTIALS} ${HOME}/Library/Keychains/login.keychain')
shell(strip('''\
cd build;
cmake ../source
-DCMAKE_BUILD_TYPE=release
-DCMAKE_PREFIX_PATH=\${WORKSPACE}/libs/build/dist
-DCMAKE_TOOLCHAIN_FILE=../source/cmake/iOS.toolchain.cmake
-GXcode
'''))
shell('cd build; xcodebuild -target install -configuration Release PROVISIONING_PROFILE=${PROVISIONING_PROFILE_RELEASE}')
shell('cd build; xcodebuild -target ipa -configuration Release')
}
}