1
00:00:02,540 --> 00:00:09,560
Sometimes you only may want to work on some specific jobs or in some specific stages, and when you're

2
00:00:09,710 --> 00:00:15,440
working on a specific stage, especially if it's towards the end, you don't really want for the entire

3
00:00:15,440 --> 00:00:18,570
thing to build and take so much time.

4
00:00:19,040 --> 00:00:26,480
So if you do not rely on any dependencies from the previous stages, you can simply disable the jobs.

5
00:00:27,140 --> 00:00:34,340
And in order to disable the jobs, for example, I can disable build website by specifying, by adding

6
00:00:34,340 --> 00:00:35,600
a dot before that.

7
00:00:35,840 --> 00:00:37,720
And this is commenting.

8
00:00:37,730 --> 00:00:40,460
This is disabling the job so the job will not be executed.

9
00:00:41,240 --> 00:00:45,340
So anything that has a dot in front of it will not be executed.

10
00:00:45,350 --> 00:00:52,280
And if this takes you to the proper step in your problem, it would be an idea on how you can make that

11
00:00:52,280 --> 00:00:56,970
run faster without making major changes, commenting code or removing code or something.

12
00:00:58,160 --> 00:01:04,519
Just an idea on how you can easily work on a specific stage without messing up the entire pipeline.

