how to create a snapshot/baseline from a build script
2 answers
You could use the scm command line tool to create the snapshot/baseline. The scm tools is located at <RTC_install_dir>/scmtools.
scm create snapshot - creates a snapshot associating it to a workspace
scm create baseline - creates a baseline in the workspace
scm create snapshot - creates a snapshot associating it to a workspace
scm create baseline - creates a baseline in the workspace
We are trying to create automatic snapshot/baseline from a maven script using antrun. Where can we find an example of such script ?
Hi,
I am also interested in doing this.
The following is from the RTC help:
Create a baseline named "beta2 updates" for all components in the repository workspace named HelloJazz, using stored credentials for the repository nicknamed jazzhost:
C:\>scm create baseline -r jazzhost --all HelloJazz "beta2 updates"
So, you would just put that command in your script.
Hope this helps,
- Walter
I am also interested in doing this.
The following is from the RTC help:
C:\>scm create baseline -r jazzhost --all HelloJazz "beta2 updates"
So, you would just put that command in your script.
Hope this helps,
- Walter
You could use the scm command line tool to create the snapshot/baseline. The scm tools is located at <RTC_install_dir>/scmtools.
scm create snapshot - creates a snapshot associating it to a workspace
scm create baseline - creates a baseline in the workspace
We are trying to create automatic snapshot/baseline from a maven script using antrun. Where can we find an example of such script ?