ci: remove starting build of status.im website

This website is now decomissioned and no longer updated.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-02-21 18:18:30 +01:00
parent 7e228d0e66
commit fee8ef5524
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 1 additions and 5 deletions

View File

@ -35,8 +35,6 @@ pipeline {
stage('Prep') { stage('Prep') {
steps { script { steps { script {
println("Current JOB: ${env.JOB_NAME}") println("Current JOB: ${env.JOB_NAME}")
/* just for a shorter access */
btype = utils.getBuildType()
} } } }
} }
stage('Build') { stage('Build') {
@ -84,10 +82,8 @@ pipeline {
when { expression { params.PUBLISH } } when { expression { params.PUBLISH } }
steps { script { steps { script {
switch (btype) { switch (btype) {
case 'nightly': case 'nightly': /* Create JSON file with newest build URLs */
/* Create JSON file with newest build URLs */
s3.updateBucketJSON(urls, 'latest.json'); s3.updateBucketJSON(urls, 'latest.json');
build(job: 'website/status.im', wait: false);
break; break;
case 'release': case 'release':
github.publishReleaseFiles(repo: 'status-mobile'); github.publishReleaseFiles(repo: 'status-mobile');