pipeline { agent { label 'macos' } options { /* Go requires a certain directory structure */ checkoutToSubdirectory('src/github.com/status-im/status-go') /* manage how many builds we keep */ buildDiscarder(logRotator( numToKeepStr: '30', daysToKeepStr: '30', )) } environment { STATUS_PATH = 'src/github.com/status-im/status-go' CI_DIR = "${env.STATUS_PATH}/_assets/ci" GOPATH = "${env.WORKSPACE}" PATH = "${env.PATH}:${env.GOPATH}/bin" } stages { stage('Prep') { steps { script { lib = load("${CI_DIR}/lib.groovy") /* clarify what we're building */ println("Version: ${lib.getVersion()}") println("Git Branch: ${lib.gitBranch()}") println("Git Commit: ${lib.gitCommit()}") /* save and create a dir for artifacts */ dest = "${env.WORKSPACE}/pkg" sh "mkdir -p ${dest}" /* for easier reuse */ artifact = "status-go-ios-${lib.suffix()}.zip" } } } stage('Setup') { steps { dir(env.STATUS_PATH) { sh 'make setup-build' } } } stage('Test') { steps { dir(env.STATUS_PATH) { sh 'make ci' } } } stage('Compile') { steps { dir(env.STATUS_PATH) { sh 'make statusgo-ios' dir('build/bin') { sh 'zip -r status-go-ios.zip Statusgo.framework' sh "cp status-go-ios.zip ${dest}/${artifact}" } } } } stage('Archive') { steps { archiveArtifacts("pkg/${artifact}") } } stage('Upload') { steps { script { lib.uploadArtifact("pkg/${artifact}") } } } stage('Cleanup') { steps { dir(env.STATUS_PATH) { sh 'make clean' sh "rm -fr ${dest}" } } } } // stages } // pipeline