Questions tagged [bitbucket-pipelines]

Questions related to Bitbucket Pipelines CI/CD.

Bitbucket Pipelines is a Continuous Delivery & Continuous Integration (CI/CD) feature that’s built right into Bitbucket Cloud, from Atlassian. It allows developers to easily automate their workflow of building and deploying their code every time they push code to their Bitbucket repositories.

It run the builds inside Docker Container*.

1350 questions
-1
votes
1 answer

Bitbucket Pipeline Error With Node/Angular

I m trying to Build my angular 12 project via Bitbucket Pipeline. Upon build i m getting this warnings and finally build get failed. I know this is due to old version of node . Can any one help me how to resolve this. This is my…
CodeMind
  • 616
  • 1
  • 7
  • 19
-1
votes
1 answer

How to use a Jenkinsfile for these build steps?

I'm learning how to use Jenkins and working on configuring a Jenkins file instead of the build using the Jenkins UI. The source code management step for building from Bitbucket: The build step for building a Docker container: The build is of type…
blue-sky
  • 51,962
  • 152
  • 427
  • 752
-1
votes
1 answer

Bitbucket pipelines/Docker : Connection refused

I am trying to configure a bitbucket CI pipeline to run tests.Stripping out the details I have a make file which looks as follows to run some form of integration tests. test-e2e: docker-compose -f ${DOCKER_COMPOSE_FILE} up -d ${APP_NAME}…
Bobo
  • 47
  • 1
  • 6
-1
votes
1 answer

GIT SCM configuration for bitbucket pull requests checkout using generic Webhook parameters

This stackoverflow page can help you checkout bitbucket pull requests in Jenkins with Generic webhook trigger. Pre-requisites: Jenkins: 1) Installing Generic Webhook Trigger Plugin and Bitbucket plugin in Jenkins 2) Configuring 'Bitbucket Endpoints'…
-1
votes
1 answer

bitbucket ci cd pipelines ssh connection failed

ssh -i ~/home/devops/.ssh/authorized_keys kiran@35.194.42.142 Warning: Identity file /root/home/devops/.ssh/authorized_keys not accessible: No such file or directory. Pseudo-terminal will not be allocated because stdin is not a terminal. …
kiran
  • 21
  • 3
-1
votes
1 answer

Continuous delivery of a docker container to Google Cloud

Goal: I have an application based inside a docker container. I want to be able to use continuous integration for that with push to deploy using Bitbucket Pipelines to Google Cloud. I need access to an SQL database (MariaDB preferably), and some kind…
Arak Tai'Roth
  • 408
  • 1
  • 7
  • 24
-1
votes
1 answer

bitbucket pipeline with laravel & shared hosting

i am trying to deploy laravel 5.4 app with bitbucket pipeline and get eror "fatal: Could not get last commit. Network down? Wrong URL? Use 'git ftp init' for the inital push., exiting..." i read an article on this site i create this yaml…
M Usman Nadeem
  • 415
  • 2
  • 13
-2
votes
1 answer

CI/CD Pipeline using BitBucket and VertexAI

Has anyone tried building a CI/CD pipeline for a private repo on BitBucket and running on VertexAI (Google Cloud)? Or any similar use case?
-2
votes
1 answer

Getting Synax error: SyntaxError unexpected token in json at position 2 aws-lambda

Through Bitbucket, I'm passing an environmental variable object through the development tab that looks similarly to: { "var1": "tets.var.com", "port": "34", "username": "john", "password": "pass", "env": "dev" } I am also passing these…
-2
votes
1 answer

How to populate a parameter file on bitbucket pipelines

I have to populate a parameters.yml file with variables in my pipeline. This is about 60 lines required in the file. So I tried using about 60 echo statements to populate the file, and keep it easily configurable, but when using the validator, it…
-2
votes
1 answer

How to deploy using the compute engine

How to deploy using the compute engine? I want to continually deploy through the bitbucket pipeline.
-2
votes
1 answer

How to create a sh file to change directory and perform operations

I'm trying to connect to a Linux VM using a sh file running in my pipelines in order to create a small CI/CD solution. My idea is to login to the VM and perform a Docker compose down/up operation. My VM is an Ubuntu 18 This is the code inside the…
Van Darth Vadden
  • 561
  • 1
  • 5
  • 11
-2
votes
1 answer

JavaScript obfuscation and minification in bitbucket pipeline

I know my code is not worth stealing, but it is worth a "penny" every time someone is downloading it - so how can I make it smaller (must have)/less readable (nice to have) outside of doing it by my own and pushing it to deployable branch? My…
tzim
  • 1,715
  • 15
  • 37
-4
votes
1 answer

Cloud storage bitbucket pipeline ignores directories

I have below pipeline image: node:10.15.3 pipelines: default: - step: name: Installing caches: - node script: - rm -rf package-lock.json - rm -rf node_modules -…
-5
votes
1 answer

Deploying React App via FTP from Bitbucket to my server

I set this settings in pipelines in Bitbucket. Everything works well, but it doesn't look good when I commit every time Build. But when I don't make it. It says to me that I need to commit for the first time. Have someone best practice/experience?…
d3tr1tus
  • 789
  • 2
  • 10
  • 23
1 2 3
89
90