status-react/ci
Jakub Sokołowski 0b8c673094
ci: fix iOS signing, use same keychain name
Using different temporary keychains does not work if we do not set
`default_keychain=true`, because `codesign` then can't find the cert:
```
error: No signing certificate "iOS Distribution" found: No "iOS Distribution" signing certificate matching team ID
```
But if we set `default_keychain=true` then we cause a race condition
when the keychain is deleted by a parallel job while another is using it
as its default.

For this reason we have to use a static keychain name and keep it
between builds.

I tried disabling `default_keychain=true` in #11378 but it worked only
because the default user keychain already had the cert.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2020-11-17 10:16:32 +01:00
..
tests reduce number of parallel sessions 2020-11-13 15:29:35 +01:00
tools ci: fix iOS signing, use same keychain name 2020-11-17 10:16:32 +01:00
Jenkinsfile remove old jenkisnfiles 2018-09-04 07:39:40 -04:00
Jenkinsfile.android ci: fix iOS signing, use same keychain name 2020-11-17 10:16:32 +01:00
Jenkinsfile.combined ci: fix iOS signing, use same keychain name 2020-11-17 10:16:32 +01:00
Jenkinsfile.ios ci: fix iOS signing, use same keychain name 2020-11-17 10:16:32 +01:00
Jenkinsfile.nix-cache ci: fix iOS signing, use same keychain name 2020-11-17 10:16:32 +01:00
README.md use status-react-jenkins as CI library 2020-03-11 19:11:36 +01: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-react-jenkins@master'

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

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

This is done to improve security of our CI setup.