Hi Guys
we want to migrate from PB 2017 to 2019
We have set up a CI sstem with Jenkins and we need to mantain PB2017 for some months
So it would be nice to work with PB2017 and commit to SVN and to set up anoher workspace in jenkins to compile with PB2019, but to do so I need to migrate my code
Is there any trick or command line tool to migrate during the Jenkins Pipeline before to compile?
Thanks a lot
https://docs.appeon.com/pb2019/pbug/apbs02.html
this is an example of loading source into my empty pbls. you may or may not need 3pass for your loads, depends on your requirements
start session
scc set connect property provider "WizSource"
scc set connect property userid "loginname"
scc set connect property project "projectname"
scc set connect property localprojpath "c:\build"
scc connect
scc set target "mybuild.pbt" "refresh_all"
scc refresh target full
scc close
end session