mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-25 14:57:05 +00:00
fix for e2e builds
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
77267a145f
commit
750cc93fe9
@ -49,7 +49,7 @@ def pkgFilename(type, ext) {
|
|||||||
|
|
||||||
def doGitRebase() {
|
def doGitRebase() {
|
||||||
/* rebasing on relases defeats the point of having a release branch */
|
/* rebasing on relases defeats the point of having a release branch */
|
||||||
if (getBuildType() == 'release') {
|
if (params.BUILD_TYPE == 'release') {
|
||||||
println 'Skipping rebase due to release build...'
|
println 'Skipping rebase due to release build...'
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -118,7 +118,7 @@ def uploadArtifact(path) {
|
|||||||
def domain = 'ams3.digitaloceanspaces.com'
|
def domain = 'ams3.digitaloceanspaces.com'
|
||||||
def bucket = 'status-im'
|
def bucket = 'status-im'
|
||||||
/* There's so many PR builds we need a separate bucket */
|
/* There's so many PR builds we need a separate bucket */
|
||||||
if (params.BUILD_TYPE == 'pr') {
|
if (getBuildType() == 'pr') {
|
||||||
bucket = 'status-im-prs'
|
bucket = 'status-im-prs'
|
||||||
}
|
}
|
||||||
/* WARNING: s3cmd can't guess APK MIME content-type */
|
/* WARNING: s3cmd can't guess APK MIME content-type */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user