Skip to content

Commit de79062

Browse files
committed
code > project
1 parent 5840df1 commit de79062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/BEST_PRACTICES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is a collection of tips, advice, gotchas and other best practices for using
99
* As Pipeline usage is adopted for more projects and more teams in an organization, common patterns should be stored in [Shared Libraries](https://jenkins.io/doc/book/pipeline/shared-libraries/).
1010
* When coding functions, use unique names in your pipeline script and avoid using built-in/pre-defined items (such as "build", "stage", etc). Using pre-defined methods may result in runtime issues, such as generating a `sandbox.RejectedAccessException` error when using build job DSL.
1111
* Make use of the available [Pipeline Development Tools](https://jenkins.io/doc/book/pipeline/development/#pipeline-development-tools) for debugging your Pipeline as code.
12-
* Use [Multibranch Pipeline](https://jenkins.io/doc/book/pipeline/multibranch/) for code collaboration, new features (developed in separate branches) are validated before merging them to the master branch. Besides, it comes with automating features out-of-the-box (webhooks).
12+
* Use [Multibranch Pipeline](https://jenkins.io/doc/book/pipeline/multibranch/) for project collaboration, new features (developed in separate branches) are validated before merging them to the master branch. Besides, it comes with automating features out-of-the-box (webhooks).
1313

1414
# Parallelism
1515
* Within `parallel` blocks, use `node` blocks to make sure you farm out to real nodes for your parallelized work.

0 commit comments

Comments
 (0)