mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-07 12:17:38 +00:00
Possible fix for slow upload speeds and failures caused by most probably hitting per-bucket rate limits of DigitalOcean: >- 500 total operations per second to any individual bucket. >- 300 combined PUT, POST, COPY, DELETE, and LIST operations per second > to any individual Space. We may further limit LIST operations if > necessary under periods of high load. https://docs.digitalocean.com/products/spaces/details/limits/#rate-limits Depends on: https://github.com/status-im/status-jenkins-lib/pull/52 Signed-off-by: Jakub Sokołowski <jakub@status.im>
61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
library 'status-jenkins-lib@v1.6.2'
|
|
|
|
/* Options section can't access functions in objects. */
|
|
def isPRBuild = utils.isPRBuild()
|
|
|
|
pipeline {
|
|
agent { label 'linux' }
|
|
|
|
parameters {
|
|
choice(
|
|
name: 'VERBOSE',
|
|
description: 'Level of verbosity based on nimbus-build-system setup.',
|
|
choices: ['0', '1', '2']
|
|
)
|
|
}
|
|
|
|
options {
|
|
timestamps()
|
|
/* Prevent Jenkins jobs from running forever */
|
|
timeout(time: 120, unit: 'MINUTES')
|
|
/* manage how many builds we keep */
|
|
buildDiscarder(logRotator(
|
|
numToKeepStr: '10',
|
|
daysToKeepStr: '30',
|
|
artifactNumToKeepStr: '3',
|
|
))
|
|
/* Abort old PR builds. */
|
|
disableConcurrentBuilds(
|
|
abortPrevious: isPRBuild
|
|
)
|
|
}
|
|
|
|
environment {
|
|
TARGET = 'imports'
|
|
/* Improve make performance */
|
|
MAKEFLAGS = "-j4 V=${params.VERBOSE}"
|
|
/* Disable colors in Nim compiler logs */
|
|
NIMFLAGS = '--colors:off'
|
|
/* Makefile assumes the compiler folder is included */
|
|
QTDIR = "/opt/qt/5.14.2/gcc_64"
|
|
/* Include library in order to compile the project */
|
|
LD_LIBRARY_PATH = "$QTDIR/lib:$WORKSPACE/vendor/status-go/build/bin:$WORKSPACE/vendor/status-keycard-go/build/libkeycard/"
|
|
}
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps { sh 'make statusq-sanity-checker' }
|
|
}
|
|
|
|
stage('Check') {
|
|
steps { sh 'make run-statusq-sanity-checker' }
|
|
}
|
|
}
|
|
|
|
post {
|
|
success { script { github.notifyPR(true) } }
|
|
failure { script { github.notifyPR(false) } }
|
|
cleanup { cleanWs() }
|
|
}
|
|
}
|