Why should my development team have a build server?

前端 未结 8 1516
栀梦
栀梦 2021-02-05 03:26

We know this is good to have, but I find myself justifying it to my employer. Please pitch in on why a development team needs a build server.

8条回答
  •  广开言路
    2021-02-05 03:56

    It's a continuous quality test dashboard; it shows you statistics about how the quality of your software is doing, and it shows them to you now. (JUnit, Cobertura)

    It makes sure developers aren't hamstrung by other developers breaking the build, and encourages developers to write better code. (FindBugs, PMD)

    It saves you time and money throughout the year by getting better code from developers the first time - less money on testing and retesting - and by getting more code from the same developers, because they're less likely to trip each other up.

提交回复
热议问题