Bridge is now available in two flavors
Using Bridge CLI Bundle
- Download the latest Bridge Bundle from repo.blackduck.com or the Polaris
UI.
- If Bridge Bundle is downloaded from
repo.blackduck.com, please verify the checksum.- Mac example:
cat ~/Downloads/bridge-cli-bundle-macos_arm.zip | openssl dgst -md5 -binary | openssl enc -base64 - Windows example:
type %USERPROFILE%\Downloads\bridge-cli-win64.zip | openssl dgst -md5 -binary | openssl enc -base64
- Mac example:
- If Bridge Bundle is downloaded from
- To install, simply unzip and add
bridge-cliexecutable to your PATH or use absolute path tobridge-cliexecutable. - Run Bridge.
Download Bridge CLI Bundle from the Polaris UI
To download the latest Bridge CLI Bundle from the Polaris UI, follow these steps:
- Click username at the top right.
- Select Accounts.
- Select Downloads.
- Choose the appropriate package for your operating system.
Using Bridge CLI Thin Client – New!
Download the latest version of the Bridge CLI Thin Client from repo.blackduck.com. (Checksum verification examples are shown above.)
The Thin Client downloads the necessary features at runtime as it executes the workflow. Here are some command examples:
- To download the latest version of Polaris workflow, and run it:
bridge-cli --stage polaris --update - To list all available and installed versions of Polaris workflows using list
command:
bridge-cli --list polaris - To list all available and installed versions workflows using list command:
bridge-cli --list - To install a workflow:
- To install the latest version of the Polaris workflow:
bridge-cli --install polaris - To install a specific version of connect workflow:
bridge-cli --install connect@<version>
- To install the latest version of the Polaris workflow:
- To uninstall a workflow:
bridge-cli --uninstall polaris@<version>would uninstall a specific version of Polaris workflow - To purge. In case you have multiple versions of different workflows
installed, try running:
bridge-cli --purge, and it will uninstall all old versions of each workflow, and just keep the latest versions - To use:
bridge-cli --use all@latest. This will make sure Bridge updates itself to the latest version before running a workflow - A common example to have the latest of each workflow and Bridge binary would
be:
bridge-cli --stage polaris --update --use all@latest - To register the artifactory:
bridge-cli --register - To update:
bridge-cli --diagnostics --update - To check the version:
bridge-cli --version
--stage parameter value has been
changed from blackduck to blackducksca. Bridge will error out if you use the
incorrect value.