mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
Jakub Sokołowski
594c83013c
This is required to also ad GitHub releases to `status-desktop`. Also renamed `status-react-jenkins` to `status-jenkins-lib` for clarity. Depends on: https://github.com/status-im/status-react-jenkins/pull/23 Signed-off-by: Jakub Sokołowski <jakub@status.im>
17 lines
439 B
Markdown
17 lines
439 B
Markdown
# Description
|
|
|
|
This folder contains files defininf [Jenkins pipelines](https://jenkins.io/doc/book/pipeline/) that run on https://ci.status.im/.
|
|
|
|
# Libraries
|
|
|
|
All `Jenkinsfile`s contain the following line:
|
|
```groovy
|
|
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.
|