mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 16:56:31 +00:00
Jakub Sokołowski
75f23a19ad
Signed-off-by: Jakub Sokołowski <jakub@status.im> - rename jar file to match flatDir search method - try using ivy repo to pull status-go from github - drop use of artifactory in pom.xml - move status-go version to a STATUS_GO_VERSION file - upgrade status-go to 0.16.0 - unzip with overwriting - prepare-ios: doewnload archive only if it doesn't exist - fix prepare-android and prepare-ios - use Makefile targets to make sure status-go archives exist - remove unnecessary call to make prepare-android Signed-off-by: Jakub Sokołowski <jakub@status.im>
62 lines
1.1 KiB
Plaintext
62 lines
1.1 KiB
Plaintext
pipeline {
|
|
agent { label 'macos' }
|
|
|
|
options {
|
|
buildDiscarder(logRotator(
|
|
numToKeepStr: '30',
|
|
daysToKeepStr: '30',
|
|
artifactNumToKeepStr: '30',
|
|
))
|
|
}
|
|
|
|
environment {
|
|
BUILD_PLATFORM = 'macos'
|
|
LANG = 'en_US.UTF-8'
|
|
LANGUAGE = 'en_US.UTF-8'
|
|
LC_ALL = 'en_US.UTF-8'
|
|
QT_PATH = '/usr/local/opt/qt'
|
|
PATH = "/usr/local/opt/qt/bin:${env.PATH}"
|
|
}
|
|
|
|
stages {
|
|
stage('Prep') {
|
|
steps {
|
|
script {
|
|
/* Necessary to load methods */
|
|
desktop = load 'ci/desktop.groovy'
|
|
cmn = load 'ci/common.groovy'
|
|
desktop.prepDeps()
|
|
}
|
|
}
|
|
}
|
|
stage('Lint') {
|
|
steps {
|
|
script { cmn.runLint() }
|
|
}
|
|
}
|
|
stage('Tests') {
|
|
steps {
|
|
script { cmn.runTests() }
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
script { desktop.buildClojureScript() }
|
|
}
|
|
}
|
|
stage('Compile') {
|
|
steps {
|
|
script { desktop.compile() }
|
|
}
|
|
}
|
|
stage('Bundle') {
|
|
steps {
|
|
script { dmg = desktop.bundleMacOS(cmn.getBuildType()) }
|
|
}
|
|
}
|
|
stage('Archive') {
|
|
steps { archiveArtifacts dmg }
|
|
}
|
|
}
|
|
}
|