status-react/ci
Jakub Sokołowski 079074abde
ci: do not upload release builds to Diawi
Otherwise the upload fails with `400 Bad Request` due to size:
```
bundler: failed to load command: fastlane (/Users/jenkins/.bundle/ruby/2.7.0/bin/fastlane)
/Users/jenkins/.bundle/ruby/2.7.0/gems/rest-client-2.1.0/lib/restclient/abstract_response.rb:249:in `exception_with_response': 400 Bad Request (RestClient::BadRequest)
```
Because release builds are over 100 MB:
```
 > ls -l StatusIm-Mobile-v1.20.0-59567a.ipa
-rw-r--r-- 1 jakubgs jakubgs 104M Sep  7 15:50 StatusIm-Mobile-v1.20.0-59567a.ip
```
And the Diawi free account limit is 75 MB:
https://www.diawi.com/features-services

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-09-08 09:50:14 +02:00
..
tests ci: disable sandbox for status-go iOS builds 2022-09-01 16:17:47 +02:00
tools ci: disable sandbox for status-go iOS builds 2022-09-01 16:17:47 +02:00
Jenkinsfile remove old jenkisnfiles 2018-09-04 07:39:40 -04:00
Jenkinsfile.android ci: disable sandbox for status-go iOS builds 2022-09-01 16:17:47 +02:00
Jenkinsfile.combined ci: do not upload release builds to Diawi 2022-09-08 09:50:14 +02:00
Jenkinsfile.ios ci: do not upload release builds to Diawi 2022-09-08 09:50:14 +02:00
Jenkinsfile.nix-cache ci: disable sandbox for status-go iOS builds 2022-09-01 16:17:47 +02:00
Jenkinsfile.tests ci: use pipefail to actually catch test errors 2022-09-05 10:24:26 +02:00
README.md ci: upgrade jenkins lib to 1.2.12 to generalize GH release 2021-04-19 11:47:34 +02:00

README.md

Description

This folder contains files defininf Jenkins pipelines that run on https://ci.status.im/.

Libraries

All Jenkinsfiles contain the following line:

library 'status-jenkins-lib@master'

Which loads the used methods - like nix.shell() - from a separate private repo:

https://github.com/status-im/status-jenkins-lib

This is done to improve security of our CI setup.