但是,正如您看到的,使用构建管道可以避免这种情况。
But, as you can see, it doesn't have to be this way if you use a build pipeline.
通过构建管道提高效率
StylingMover会构建管道,包括序列化程序。
解决方案:一个构建管道(pipeline)可以运行不同类型的构建。
Solution: a build pipeline enables running different types of builds.
构建管道的用途是异步地执行长时间运行的过程,这样的话,开发人员签入代码之后,不需要长时间等待反馈。
The purpose of a build pipeline is to execute longer-running processes, in essence, asynchronously, so that once someone has checked in code, they're not delayed in receiving feedback.
例如,如果执行一个构建过程要花10分钟以上,那么可以创建一个构建管道,在某人将代码提交到存储库之后,它会运行一个初步的轻型构建。
For instance, if a build takes more than 10 minutes to execute, a build pipeline can be established so that after someone commits code into a repository, an initial, lightweight build is run.
例如,如果执行一个构建过程要花10分钟以上,那么可以创建一个构建管道,在某人将代码提交到存储库之后,它会运行一个初步的轻型构建。
For instance, if a build takes more than 10 minutes to execute, a build pipeline can be established so that after someone commits code into a repository, an initial, lightweight build is run.
应用推荐