Hello, all
We have the following issue in one of my application targets.
We use automated builds from a build machine using ORCA script and powerjen
Orca script does "get latest" from the source control and refreshes the target. Then Powerjen command line creates PBD and EXE with /E and /P parameters.
In one of my applications there is a need to perform a full rebuild after "scc refresh target full" command. Unless full rebuild is performed after the command is complete there is no way to run the application, even from PB IDE.
What could be the reason for it and how can it be fixed? Currently we need to run PowerJen with /A parameter and it multiplies the build time.
This is the ORCA file script:
//------------------------------------------------------
start session
set debug true
scc set connect property provider "WizSource"
scc set connect property userid "Builder"
scc set connect property password "****"
scc set connect property project "Event_dev"
scc set connect property localprojpath "C:\pb_sourcecontrol\PB2017\PBMainApp\Events\Events_dev"
scc set connect property deletetempfiles false
scc set connect property logfile "events_dev_sc.log"
scc connect
scc set target "events1.pbt" "refresh_all"
scc refresh target full
end session
//------------------------------------------------------
Thank you
There were less errors, but not all were cleared.
Why is REFRESH TARGET FULL is not the same as the full rebuild in the IDE ?