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*.

933 questions
0
votes
1 answer

Bitbucket Pipelines - is it possible to download additional file to project via curl?

We have a separate build for the frontend and backend of the application, where we need to pull the dist build of frontend to backend project during the build. During the build the 'curl' cannot write to the desired location. In detail, we are using…
RadekSohlich
  • 152
  • 3
  • 9
0
votes
1 answer

Git/Bitbucket pipelines - What causes tags to appear different depending on what branch I push to?

I'm trying to understand why I'm getting two different results relative to git tags when running my bitbucket-pipelines.yml file. Currently my project has tags running from 1.0.0 - 1.0.25. The .yml file looks like this... pipelines: branches: …
0
votes
1 answer

Heroku with Django and node build

I am pushing everything from BitBucket to Heroku, using Pipelines. The problem are static files because I am using django-gulp which will compile all sass files (using nodejs and gulp) when I call collectstatic. It will first push code to Heroku…
Bojan Kogoj
  • 4,521
  • 1
  • 30
  • 52
0
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
  • 383
  • 1
  • 13
0
votes
1 answer

'docker push ...' from Bitbucket Pipelines is very slow to my self-hosted docker registry

I am using Bitbucket Pipelines to build my docker image, and push to my self-hosted docker registry, which is located in China. Is there any way I can speed up docker push from Bitbucket Pipelines. Otherwise, this features is almost useless.
Cross
  • 599
  • 5
  • 18
0
votes
1 answer

Bitbucket Pipelines error whilst building an application

since this morning I'm encountering an error in the build process of my React application using Bitbucket Pipelines. Nothing has changed to my applications other than a few tweaks that has should not trigger this error. When I try to build my app…
J.Koppen
  • 121
  • 2
  • 4
  • 13
0
votes
1 answer

Bitbucket pipelines and continuous delivery workflow

I'm trying to setup continuous delivery for our company and have doubts on how to do it. GOAL The goal is to build and then deploy on staging everytime the master is updated. The next step will be to have some interface so the project manager can…
0
votes
1 answer

How to change angular scope values using Casperjs

I was trying to automate some test cases for an angular booking app I was working on ,where I wanted to write a test case that was to be integrated with bitbucket pipeline. I found casperjs easy to start with. There came a stage when I had to…
32teeths
  • 1,079
  • 1
  • 11
  • 29
0
votes
0 answers

ProFtpd on bitbucket pipelines

I have a bitbucket pipeline where I need to test an FTP client. I have already tested it on a Docker image and everything works fine. However on the pipeline with the same instructions I get a segmentation fault. image: node:7.6.0 pipelines: …
0
votes
1 answer

Bitbucket Pipeline sass

I have a simple app that uses sass that I'm trying to set up with pipelines Currently its failing because sass command can't be found. I'm guessing I need to run gem install sass? but how can I add this to my pipeline config? Currently it looks like…
Ben Gannaway
  • 811
  • 6
  • 19
0
votes
1 answer

Cross Git repositories config file

We have multiple Git repositories (one per project..), and we have configuration files which should stay "synced" across all projects, but should also be in the Git repository, for example - pipelines yaml, and static analysis configuration…
Rotem
  • 432
  • 1
  • 5
  • 23
0
votes
1 answer

Bitbucket pipelines lastest Node js (at least 7.4.0)

I have an application with tests on Bitbucket and I want to run the tests everytime sombebody pushes something to the git. I've found out that new feature Bitbucket Pipelines is for that the best. What I need? I can't find anywhere the lastest…
durisvk
  • 767
  • 1
  • 10
  • 23
0
votes
1 answer

Continuous Integration with BitBucket

I'm developing a private webapp in JSF which is available over the internet and now reached a stage where I wanted to introduce CI (Which I'm fairly new to) into the whole process. My current project setup looks like this: myApp-persistence: maven…
0
votes
1 answer

PHP artisan optimize returns error on bitBucket Pipeline

I'm trying to use bitBucket Pipeline with a Laravel. But everytime that run the pipeline return the follow error: > post-install-cmd: Illuminate\Foundation\ComposerScripts::postInstall > post-install-cmd: php artisan optimize --verbose Generating…
0
votes
1 answer

How do I prevent new programmers pushing `console.log` to Bitbucket?

I want to prevent new programmers pushing code containing console.log to Bitbucket using pipelines. How I'll do it?
ilhan
  • 7,981
  • 30
  • 107
  • 186