views:

39

answers:

2

A gated check-in will create a change-set whose name is ended with *NO_CI*? What is that NO_CI stand for? I can just think of "no check in errors" but it doesn't make sense.

+1  A: 

NO_CI on a check in indicates "No Continuous Integration" i.e. "please don't start a CI build because of this check in".

Sohnee
+2  A: 

It stands for No Continuous Integration.

Since the check-in is gated, the existing code, plus this check-in, will be built separately and only allowed onwards if the build is successful. So when the gating process actually submits it to source control, there wouldn't be any point for that check-in to cause another (continuous integration) build to occur, since at that point thechangeset is 'known good'.

So this suffix is an instruction to the continuous integration system to the effect of: "When this changeset actually gets committed 'for real', don't automatically fire a continuous integration build on account of it".

See eg here for more info.

AakashM

related questions