Adding export build steps
To add export steps to your build job, do the following
steps:
- Add an Invoke Ant build step:
- In the Build section, click Add build step and select Invoke Ant.
- n the Targets field, enter exportprops.
- In the Build File field, enter the path to the build file:
- On Windows, enter the following path: $PEGA_HOME\samples\Jenkins-build.xml
- On UNIX, enter the following path: $PEGA_HOME/scripts/samples/jenkins/Jenkins-build.xml
- Add a build step to run either prpcServiceUtils.bat or
prpcServiceUtils.sh.
- If you are on Windows, go to step 3.
- If you are on UNIX, go to step 4.
- On Windows, create an Execute Windows batch command build step:
- In the Build section, click Add build step and select Execute Windows batch command.
- In the Command field, enter the following command: %PEGA_HOME%\scripts\utils\prpcServiceUtils.bat export --connPropFile %WORKSPACE%\%SystemName%_export.properties --artifactsDir %WORKSPACE%
- On UNIX, create an Execute Shell batch command build step:
- In the Build section, click Add build step and select Execute Shell batch command.
- In the Command field, enter the following command: $PEGA_HOME/scripts/utils/prpcServiceUtils.sh export --connPropFile $WORKSPACE/${SystemName}_export.properties --artifactsDir $WORKSPACE
Previous topic Adding build steps to import or export the archive Next topic Adding import build steps