Reputation: 11
I am trying this in a scripted pipeline
p4sync (
charset: 'none',
credential: 'P4Credentials',
format: 'jenkins-${NODE_NAME}-${JOB_NAME}',
populate: syncOnly(
force: true,
have: true,
modtime: false,
parallel: [enable: true, minbytes: '1024', minfiles: '1', threads: '4'],
pin: '',
quiet: false,
streamAtChange: "999999",
revert: false),
source: depotSource("//ourDepot/develop/project/...")
)
It always just syncs to the latest revision and seems to ignore streamAtChange (which is what I thought would determine the synced CL).
I've tried moving streamAtChange alongside Source and in various other places to no avail.
Upvotes: 0
Views: 40