Im looking at creating a pipes repo which can call other repositories and deploy to specific environments of which we have many (multiple dev and test environments).
The intention of this is to have a single repo where a user can select an envionrment, and it would then go deploy the master branch of all repositories in its list to that environment.
Ive like to avoid having too much duplication of code and ideally be able to just iterate over a list of either the environments, or the repositories.
Is there any documentation on examples someone can point me to if this is even possible?
thanks
Loops are certainly possible in bitbucket-pipelines.yml, though I don't think you can call a pipe from within, which is what I am looking for...
script:
- VERSIONS=`\ls versions`
- >
for v in $VERSIONS; do
if [ "$BITBUCKET_BRANCH" == "release" ]; then
version=$v ;
else
version="${BITBUCKET_BRANCH}-$v" ;
fi
- echo $version # Do what you need to here ;
done
Hey Kelly,
Figured I would jump in as I have noticed that no one has yet replied.
Arrays/loops are not supported in Bitbucket Cloud Pipelines YML config, to use arrays/loops you would need to execute a bash script for this. We cannot provide specific assistance with scripting as this falls outside of our support scope.
Cheers!
- Ben (Bitbucket Cloud Support)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.