library 'status-jenkins-lib@v1.2.16' pipeline { agent { label 'linux' } parameters { string( name: 'BRANCH', defaultValue: 'develop', description: 'Name of branch to build.' ) booleanParam( name: 'RELEASE', defaultValue: false, description: 'Enable to create a new release on GitHub and DigitalOcean Space.', ) } options { disableConcurrentBuilds() /* Go requires a certain directory structure */ checkoutToSubdirectory('src/github.com/status-im/status-go') /* manage how many builds we keep */ buildDiscarder(logRotator( numToKeepStr: '5', daysToKeepStr: '30', )) } environment { STATUS_PATH = "${env.WORKSPACE}/src/github.com/status-im/status-go" GOPATH = "${env.WORKSPACE}" PATH = "/usr/local/go/bin:${env.PATH}:${env.GOPATH}/bin" /* This will override the var in Makefile */ RELEASE_DIR = "${env.WORKSPACE}/pkg" } stages { stage('Build') { parallel { stage('iOS') { steps { script { ios = jenkins.Build('status-go/platforms/ios') } } } stage('Android') { steps { script { android = jenkins.Build('status-go/platforms/android') } } } stage('Linux') { steps { script { linux = jenkins.Build('status-go/platforms/linux') } } } stage('Docker') { steps { script { dock = jenkins.Build('status-go/platforms/docker') } } } } // parallel } // stage(Build) stage('Archive') { steps { script { sh "rm -fr ${env.RELEASE_DIR}" sh "mkdir ${env.RELEASE_DIR}" [ios, android, linux].each { platformBuild -> jenkins.copyArts(platformBuild) } dir(env.RELEASE_DIR) { /* generate sha256 checksums for upload */ sh 'sha256sum * | tee checksum.sha256' archiveArtifacts('*') } } } } // stage(Archive) stage('Release') { when { expression { params.RELEASE == true } } steps { script { def suffix = "-"+utils.suffix() /* rename build files to not include versions */ dir(env.RELEASE_DIR) { findFiles(glob: 'status-go-*').each { pkg -> sh "mv ${pkg.path} ${pkg.path.replace(suffix, "")}" } } /* perform the release */ dir(env.STATUS_PATH) { withCredentials([[ $class: 'UsernamePasswordMultiBinding', credentialsId: 'status-im-auto', usernameVariable: 'GITHUB_USER', passwordVariable: 'GITHUB_TOKEN' ]]) { env.RELEASE_BRANCH = utils.branchName() env.RELEASE_DIR = env.RELEASE_DIR sh 'yes | make release' } } } } } // stage(Release) } // stages post { always { dir(env.STATUS_PATH) { sh 'make clean-release' } } } }