Skip to main content

All Questions

0 votes
1 answer
168 views

Bitbucket Pipelines: Unable to Execute Multiple Reusable Steps in a Custom Pipeline

I'm encountering an issue where I cannot get multiple reusable steps to execute sequentially in a custom pipeline in Bitbucket. My goal is to set up AWS credentials and then deploy a Go application, ...
quetzalfir's user avatar
1 vote
1 answer
119 views

bash: apt-get: command not found in bitbucket pipeline

I've been trying to build a pipeline to test my deploys in bitbucket but i keep getting this problem + apt-get update && \ apt-get install -y \ fonts-liberation \ libasound2 \ libatk-bridge2.0-...
Cesar Chavana's user avatar
0 votes
0 answers
53 views

atlassian pipeline Host key verification failed

I would like some help, I'm trying to automate the upload of a .jar file using atlassian pipelines. Everthing compiles and runs ok until it's time to upload the file. Where I get INFO: Configuring ssh ...
Eiron's user avatar
  • 1
1 vote
1 answer
511 views

Use installed tooling from previous step in bitbucket pipeline

I'm trying to understand more about pipelines and I created this pipeline file. How can I reuse the awscli installation that occurs in the &build-ecr step in the &update-ecs step? ERROR + aws ...
Pablo Marques's user avatar
0 votes
1 answer
92 views

Nodejs Deployment on GKE

How can I containerize a Node.js application with a MySQL database and then deploy it on GKE using Bitbucket Pipeline and DockerHub? I need guidance on the steps and best practices to achieve this ...
Amit Choudhary's user avatar
1 vote
0 answers
113 views

Create environment every Pull Request

I am asking a question for some knowledge and knowhow. I am running a React App where the build is hosted on AWS. I then have an EC2 instance of my backend that using Django REST framework. I also ...
Hamodey_'s user avatar
0 votes
1 answer
594 views

Bitbucket pipeline not running custom manual deploy correctly

I have a custom call in my Bitbucket pipeline called "manualStagingDeploy." I have repository environment variables defined for my development environment and deployment env vars for the ...
akaHeimdall's user avatar
1 vote
1 answer
209 views

Decline a PR when pipeline gets failed

I am using bitbucket pipelines for PR raised pipeline, is there any way to write in bitbucket-pipelines.yml or in bitbucket settings to Cancel/Decline PR if pipeline gets failed at any step? There are ...
Abhishek Singh's user avatar
0 votes
0 answers
442 views

Bitbucket pipelines | Host key verification failed

Having an issue with bitbucket pipelines, throwing Host key verification failed. Bitbucket-pipelines.yml image: php:7.3.3 pipelines: branches: development: - step: name: ...
Gammer's user avatar
  • 5,548
3 votes
1 answer
3k views

Disable RYUK (Testcontainers for Go)

I'm using bitbucket pipelines to run my Go project tests that use Testcontainers. Pipelines fail with message: Error response from daemon: authorization denied by plugin pipelines: --mounts is not ...
bluewhite132415's user avatar
0 votes
1 answer
735 views

How to execute regex inside a bitbucket pipeline?

I have a bitbucket pipeline where I want to retrieve some part of the branch name (the ticket name) I basically get the branch name with : - BRANCH_NAME="$(git rev-parse --abbrev-ref HEAD)" ...
Crocsx's user avatar
  • 7,320
0 votes
1 answer
1k views

Find pipeline-variables for a Bitbucket pipeline

I'm taking over some code, where I can see a line like this in the bitbucket-pipeline.yaml-file: if [ $THEME_NAME ]; then cd ./site/web/app/themes/$THEME_NAME/ && yarn && cd ../../../.....
Zeth's user avatar
  • 2,336
8 votes
3 answers
6k views

Bitbucket pipelines authorization denied by plugin pipelines

I am currently trying to build a bitbucket pipeline which is supposed to run a docker-compose file to test a microservice before deployment. The docker compose file is supposed to build my ...
Terchila Marian's user avatar
2 votes
0 answers
317 views

Run bitbucket pipeline only on PR creations but not on updates

Bitbucket allows to start pipeline for a PR: pipelines: pull-requests: "**": - step: script: - echo "First step" And this pipeline runs on both ...
Nastya Sekerich's user avatar
2 votes
1 answer
252 views

In django whats the difference between mergemigrations and squashmigrations?

When shall we use mergemigrations --meerge/mergemigrations and when to use squashmigrations can we execute these commands via pipeline insteed of each developer in team doing it manually ?
Sanket Patil's user avatar

15 30 50 per page