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:
parent
7e228d0e66
commit
fee8ef5524
|
@ -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');
|
||||||
|
|
Loading…
Reference in New Issue