status-go/_assets/ci/Jenkinsfile.ios

76 lines
1.8 KiB
Plaintext
Raw Normal View History

library 'status-jenkins-lib@v1.7.0'
2019-02-01 17:02:52 +00:00
pipeline {
agent { label 'macos && aarch64 && xcode-14.3 && nix-2.11' }
2019-02-01 17:02:52 +00:00
parameters {
string(
name: 'BRANCH',
defaultValue: 'develop',
description: 'Name of branch to build.'
)
booleanParam(
name: 'RELEASE',
defaultValue: false,
description: 'Enable to create build for release.',
)
}
2019-02-01 17:02:52 +00:00
options {
timestamps()
disableConcurrentBuilds()
2019-02-01 17:02:52 +00:00
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '5',
2019-02-01 17:02:52 +00:00
daysToKeepStr: '30',
))
}
environment {
TARGET = 'ios'
TMPDIR = "${WORKSPACE_TMP}"
GOPATH = "${WORKSPACE_TMP}/go"
PATH = "${PATH}:${GOPATH}/bin"
REPO_SRC = "${GOPATH}/src/github.com/status-im/status-go"
ARTIFACT = utils.pkgFilename(name: "status-go", type: "ios", ext: "zip", version: null)
/* fix for gomobile complaining about missing packages */
CGO_ENABLED = "1"
2019-02-01 17:02:52 +00:00
}
stages {
stage('Prep') {
steps { /* Go needs to find status-go in GOPATH. */
sh "mkdir -p \$(dirname ${REPO_SRC})"
sh "ln -s ${WORKSPACE} ${REPO_SRC}"
}
}
2019-02-01 17:02:52 +00:00
stage('Compile') {
steps { script {
nix.shell('make statusgo-ios', pure: false, sandbox: false)
} }
}
2019-02-01 17:02:52 +00:00
stage('Archive') {
steps {
dir('build/bin') {
sh 'zip -r status-go-ios.zip Statusgo.xcframework'
sh "mv status-go-ios.zip ${WORKSPACE}/${ARTIFACT}"
}
archiveArtifacts(ARTIFACT)
2019-02-01 17:02:52 +00:00
}
}
2019-02-01 17:02:52 +00:00
stage('Upload') {
steps { script {
env.PKG_URL = s3.uploadArtifact(ARTIFACT)
} }
}
2019-02-01 17:02:52 +00:00
} // stages
post {
success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } }
cleanup { sh 'make clean' }
} // post
2019-02-01 17:02:52 +00:00
} // pipeline