...
- Ensure the project ISX file(s) you wish to commit are available on your machine.
- Use your git client to
clone
the Bitbucket Cloud Git repository you will be checking into. Ensure the current branch isdevelop.
- Check whether the cloned Git repository has a
datastage
directory at the root. Create it now if it does not exist. - Check whether the cloned Git repository has a
filesystem
directory at the root. Create it now if it does not exist - Navigate to the command shell folder and locate the
mettleci.cmd
file. - Run the command shell by executing either the
shell
mettleci orshellmettleci.cmd
from the command line. This will start an interactive session, the current working directory does not matter. - Run the
isx cut
command to split the project ISX file(s) into a temporary directory, this step can be repeated multiple times if there is more than one ISX for a given project. Command documentation can be found here - The cut ISX files will be dumped into your temporary directory in the following directory structure
<ISX source engine name>/<ISX source project name>/<category name - recursive>/<Job Name>.isx
- Copy all ISX files and directories from within the
<source ISX project name>
directory to thedatastage
directory of your cloned Git repository. The final Git repository directory structure should matchdatastage/<category name - recursive>/<job name>.isx
- Use Git to add, commit and push all changes. Look at Atlassian's Git tutorial for details
- Verify the commit is visible in Bitbucket cloud and against the
develop
branch.
...