280 lines
9.8 KiB
Plaintext
280 lines
9.8 KiB
Plaintext
properties([
|
|
buildDiscarder(logRotator(
|
|
numToKeepStr: '2',
|
|
daysToKeepStr: '3',
|
|
artifactNumToKeepStr: '2',
|
|
artifactDaysToKeepStr: '3'
|
|
))
|
|
])
|
|
|
|
env.LANG = 'en_US.UTF-8'
|
|
env.LANGUAGE = 'en_US.UTF-8'
|
|
env.LC_ALL = 'en_US.UTF-8'
|
|
env.REALM_DISABLE_ANALYTICS=1
|
|
|
|
apkUrl = ''
|
|
ipaUrl = ''
|
|
testPassed = true
|
|
scriptOutput = ''
|
|
packageFolder = './StatusImPackage'
|
|
external_modules_dir = [
|
|
'node_modules/react-native-i18n/desktop',
|
|
'node_modules/react-native-config/desktop',
|
|
'node_modules/react-native-fs/desktop',
|
|
'node_modules/react-native-http-bridge/desktop',
|
|
'node_modules/react-native-webview-bridge/desktop',
|
|
'node_modules/react-native-keychain/desktop',
|
|
'node_modules/react-native-securerandom/desktop',
|
|
'modules/react-native-status/desktop',
|
|
'node_modules/google-breakpad',
|
|
]
|
|
|
|
external_fonts = [
|
|
'../../../../../resources/fonts/SF-Pro-Text-Regular.otf',
|
|
'../../../../../resources/fonts/SF-Pro-Text-Medium.otf',
|
|
'../../../../../resources/fonts/SF-Pro-Text-Light.otf',
|
|
]
|
|
|
|
def gitHubNotify(commentMsg) {
|
|
withCredentials([string(credentialsId: 'GIT_HUB_TOKEN', variable: 'githubToken')]) {
|
|
def ghOutput = sh(returnStdout: true, script: "curl -u status-im:" + githubToken + " -H 'Content-Type: application/json' --data '{\"body\": \"" + commentMsg + "\"}' https://api.github.com/repos/status-im/status-react/issues/" + CHANGE_ID + "/comments")
|
|
println("Result of github comment curl: " + ghOutput);
|
|
}
|
|
}
|
|
|
|
def installJSDeps() {
|
|
def attempt = 1
|
|
def maxAttempts = 10
|
|
def installed = false
|
|
sh 'node -v'
|
|
sh 'npm -v'
|
|
while (!installed && attempt <= maxAttempts) {
|
|
println "#${attempt} attempt to install npm deps"
|
|
sh 'scripts/prepare-for-platform.sh desktop'
|
|
sh 'npm install'
|
|
installed = fileExists('node_modules/web3/index.js')
|
|
attemp = attempt + 1
|
|
}
|
|
}
|
|
|
|
def doGitRebase() {
|
|
try {
|
|
sh 'git rebase origin/develop'
|
|
} catch (e) {
|
|
sh 'git rebase --abort'
|
|
throw e
|
|
}
|
|
}
|
|
|
|
def cleanupBuild() {
|
|
sh 'rm -rf node_modules'
|
|
sh "rm -rf ${packageFolder}"
|
|
sh 'rm -rf desktop/modules'
|
|
sh 'rm -rf desktop/node_modules'
|
|
}
|
|
|
|
def cleanupAndDeps() {
|
|
cleanupBuild()
|
|
sh 'cp .env.jenkins .env'
|
|
sh 'lein deps'
|
|
installJSDeps()
|
|
}
|
|
|
|
def slackNotify(message, color = 'good') {
|
|
slackSend(
|
|
color: color,
|
|
channel: '#jenkins-desktop',
|
|
message: "${BRANCH_NAME}(${env.CHANGE_BRANCH}) ${message} ${env.BUILD_URL}"
|
|
)
|
|
}
|
|
|
|
def buildClojureScript() {
|
|
sh 'rm -f index.desktop.js'
|
|
sh 'lein prod-build-desktop'
|
|
sh "mkdir ${packageFolder}"
|
|
sh """
|
|
react-native bundle \\
|
|
--entry-file index.desktop.js \\
|
|
--dev false --platform desktop \\
|
|
--bundle-output ${packageFolder}/StatusIm.jsbundle \\
|
|
--assets-dest ${packageFolder}/assets
|
|
"""
|
|
}
|
|
|
|
timeout(90) {
|
|
node() {
|
|
gitHubNotify("Desktop Jenkins build job started at ${env.BUILD_URL}")
|
|
}
|
|
try {
|
|
parallel(
|
|
'MacOS build': {
|
|
node('macos1') {
|
|
load "$HOME/env.groovy"
|
|
try {
|
|
stage('Git & Deps') {
|
|
slackNotify('MacOS build started.')
|
|
checkout scm
|
|
doGitRebase()
|
|
cleanupAndDeps()
|
|
}
|
|
|
|
stage('Build ClojureScript') {
|
|
buildClojureScript()
|
|
}
|
|
|
|
stage('Build MacOS binaries') {
|
|
/* add path for QT installation binaries */
|
|
env.PATH = "/Users/administrator/qt/5.9.1/clang_64/bin:${env.PATH}"
|
|
dir('desktop') {
|
|
sh 'rm -rf CMakeFiles CMakeCache.txt cmake_install.cmake Makefile'
|
|
sh """
|
|
cmake -Wno-dev \\
|
|
-DCMAKE_BUILD_TYPE=Release \\
|
|
-DEXTERNAL_MODULES_DIR='${external_modules_dir.join(";")}' \\
|
|
-DDESKTOP_FONTS='${external_fonts.join(";")}' \\
|
|
-DJS_BUNDLE_PATH='${workspace}/${packageFolder}/StatusIm.jsbundle' \\
|
|
-DCMAKE_CXX_FLAGS:='-DBUILD_FOR_BUNDLE=1'
|
|
"""
|
|
sh 'make'
|
|
}
|
|
}
|
|
|
|
stage('Create MacOS Bundle') {
|
|
dir(packageFolder) {
|
|
sh 'curl -L -O "https://github.com/status-im/StatusAppFiles/raw/master/StatusIm.app.zip"'
|
|
sh 'unzip StatusIm.app.zip'
|
|
sh 'cp -r assets/share/assets StatusIm.app/Contents/MacOs'
|
|
sh 'chmod +x StatusIm.app/Contents/MacOs/ubuntu-server'
|
|
sh 'cp ../desktop/bin/StatusIm StatusIm.app/Contents/MacOs'
|
|
sh 'cp ../desktop/reportApp/reportApp StatusIm.app/Contents/MacOs'
|
|
sh 'install_name_tool -add_rpath "@executable_path/../Frameworks" StatusIm.app/Contents/MacOs/reportApp'
|
|
sh 'cp -f ../deployment/macos/Info.plist StatusIm.app/Contents'
|
|
sh 'cp -f ../deployment/macos/qt.conf StatusIm.app/Contents/MacOs'
|
|
sh """
|
|
macdeployqt StatusIm.app -verbose=1 -dmg \\
|
|
-qmldir='${workspace}/node_modules/react-native/ReactQt/runtime/src/qml/'
|
|
"""
|
|
sh 'rm -fr StatusAppFiles'
|
|
}
|
|
}
|
|
|
|
stage('Archive Artifact') {
|
|
archiveArtifacts 'StatusImPackage/*.dmg'
|
|
}
|
|
|
|
slackNotify('MacOS build finished successfully.')
|
|
} catch (e) {
|
|
slackNotify('Failed to build on MacOS.', color: 'bad')
|
|
throw e
|
|
} finally {
|
|
cleanupBuild()
|
|
}
|
|
}
|
|
},
|
|
'Linux build': {
|
|
node ('linux-01') {
|
|
def qt_bin = '/opt/qt59/bin'
|
|
|
|
try {
|
|
stage('Git & Deps') {
|
|
slackNotify('Linux build started.')
|
|
checkout scm
|
|
doGitRebase()
|
|
cleanupAndDeps()
|
|
}
|
|
|
|
stage('Build ClojureScript') {
|
|
buildClojureScript()
|
|
}
|
|
|
|
stage('Build Linux binaries') {
|
|
/* add path for QT installation binaries */
|
|
env.PATH = "${qt_bin}:${env.PATH}"
|
|
dir('desktop') {
|
|
sh 'rm -rf CMakeFiles CMakeCache.txt cmake_install.cmake Makefile'
|
|
sh """
|
|
cmake -Wno-dev \\
|
|
-DCMAKE_BUILD_TYPE=Release \\
|
|
-DEXTERNAL_MODULES_DIR='${external_modules_dir.join(";")}' \\
|
|
-DDESKTOP_FONTS='${external_fonts.join(";")}' \\
|
|
-DJS_BUNDLE_PATH='${workspace}/${packageFolder}/StatusIm.jsbundle' \\
|
|
-DCMAKE_CXX_FLAGS:='-DBUILD_FOR_BUNDLE=1'
|
|
"""
|
|
sh 'make'
|
|
}
|
|
}
|
|
|
|
stage('Create Linux AppImage') {
|
|
dir(packageFolder) {
|
|
sh 'rm -rf StatusImAppImage'
|
|
/* TODO this needs to be fixed: status-react/issues/5378 */
|
|
sh 'cp /opt/StatusImAppImage.zip ./'
|
|
sh 'unzip ./StatusImAppImage.zip'
|
|
sh 'rm -rf AppDir'
|
|
sh 'mkdir AppDir'
|
|
}
|
|
sh "cp -r ./deployment/linux/usr ${packageFolder}/AppDir"
|
|
sh "cp ./deployment/linux/.env ${packageFolder}/AppDir"
|
|
sh "cp ./desktop/bin/StatusIm ${packageFolder}/AppDir/usr/bin"
|
|
sh "cp ./desktop/reportApp/reportApp ${packageFolder}/AppDir/usr/bin"
|
|
sh 'wget https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage'
|
|
sh 'chmod a+x ./linuxdeployqt-continuous-x86_64.AppImage'
|
|
|
|
sh 'rm -f Application-x86_64.AppImage'
|
|
sh 'rm -f StatusIm-x86_64.AppImage'
|
|
|
|
sh "ldd ${packageFolder}/AppDir/usr/bin/StatusIm"
|
|
sh """
|
|
./linuxdeployqt-continuous-x86_64.AppImage \\
|
|
${packageFolder}/AppDir/usr/bin/reportApp \\
|
|
-verbose=3 -always-overwrite -no-strip -no-translations -qmake=${qt_bin}/qmake \\
|
|
-qmldir='${workspace}/desktop/reportApp'
|
|
"""
|
|
sh """
|
|
./linuxdeployqt-continuous-x86_64.AppImage \\
|
|
${packageFolder}/AppDir/usr/share/applications/StatusIm.desktop \\
|
|
-verbose=3 -always-overwrite -no-strip \\
|
|
-no-translations -bundle-non-qt-libs \\
|
|
-qmake=${qt_bin}/qmake \\
|
|
-extra-plugins=imageformats/libqsvg.so \\
|
|
-qmldir='${workspace}/node_modules/react-native'
|
|
"""
|
|
dir(packageFolder) {
|
|
sh 'ldd AppDir/usr/bin/StatusIm'
|
|
sh 'cp -r assets/share/assets AppDir/usr/bin'
|
|
sh 'cp -rf StatusImAppImage/* AppDir/usr/bin'
|
|
sh 'rm -f AppDir/usr/bin/StatusIm.AppImage'
|
|
}
|
|
sh """
|
|
./linuxdeployqt-continuous-x86_64.AppImage \\
|
|
${packageFolder}/AppDir/usr/share/applications/StatusIm.desktop \\
|
|
-verbose=3 -appimage -qmake=${qt_bin}/qmake
|
|
"""
|
|
dir(packageFolder) {
|
|
sh 'ldd AppDir/usr/bin/StatusIm'
|
|
sh 'rm -rf StatusIm.AppImage'
|
|
sh 'cp -f ../StatusIm-x86_64.AppImage StatusIm.AppImage'
|
|
}
|
|
}
|
|
|
|
stage('Archive Artifact') {
|
|
archiveArtifacts 'StatusImPackage/*.AppImage'
|
|
}
|
|
|
|
slackNotify('Linux build finished successfully.')
|
|
} catch (e) {
|
|
slackNotify('Failed to build on Linux.', color: 'bad')
|
|
throw e
|
|
} finally {
|
|
cleanupBuild()
|
|
}
|
|
}
|
|
}
|
|
)
|
|
} catch (e) {
|
|
node() {
|
|
gitHubNotify("Desktop Jenkins build was failed or cancelled. More details at ${env.BUILD_URL}")
|
|
}
|
|
}
|
|
}
|