>From the docs.. "The FilteredSourceControl allows you to filter out modifications that are used to trigger a build." I may have misunderstood the purpose of the block. Are the inclusionFilter paths that one I need to "include" modifications that "will trigger" a build, are they the paths that "will not trigger" a build?
-chris On Jul 28, 2:32 am, Ruben Willems <[email protected]> wrote: > Hi > > you use a filtered source control, are you sure that you do not filter out > the commits? > > with kind regards > Ruben Willems > > On 27 July 2011 19:14, Chris <[email protected]> wrote: > > > > > > > > > Version : 1.6.7981.1 > > > I KNOW that developers submit code during the day in the location > > represented by $(stproject)/$(stview)/$(sw_dir)/* in my > > inclusionFilters block > > > <!-- Startteam source control --> > > <sourcecontrol type="filtered"> > > <sourceControlProvider type="starteam" > > autoGetSource="false"> > > <executable>$(stcmd)</executable> > > <project>$(stproject)/$(stview)</project> > > <username>$(user)</username> > > <password>$(pw)</password> > > <host>$(stserver)</host> > > <port>49284</port> > > </sourceControlProvider> > > <inclusionFilters> > > <pathFilter> > > > <pattern>$(stproject)/$(stview)/$(sw_dir)/*</pattern> > > </pathFilter> > > </inclusionFilters> > > </sourcecontrol> > > > Here's my triggers block. > > > <!-- Build triggers --> > > <triggers> > > <!-- Continuous Integration - every 2 hours --> > > <intervalTrigger name="continuous" seconds="7200" > > buildCondition="IfModificationExists"/> > > <!-- Scheduled nightly build --> > > <scheduleTrigger name="Nightly Build" time="01:00" > > buildCondition="ForceBuild"/> > > </triggers> > > > Any clues?
