One of the steps in our pipeline is consistently failing but produces no logs.
When I click on 'Build setup' there is a brief loading spinner but then we always get the warning triangle and still no logs are visible.
While writing this question I re-ran the pipelines again and this time the "Frontend Tests" failed with no info in 0s.
The pipeline uses image: python:3.6.8 and the step that fails looks like this:
- step:
name: Frontend Tests
caches:
- pip
script:
- echo 'hi'
# Install Requirements
- pip install -r requirements.txt
# Run Tests
- python tests.py
services:
- mongo
- postgres
Please let me know what additional info may be helpful.
Thanks in advance for any guidance/help.
Looks like this was caused by a change to the Postgres docker image and how it handles authentication.
After adding `POSTGRES_HOST_AUTH_METHOD: trust` to our bitbucket-pipelines.yml builds are passing again.
definitions:
services:
postgres:
image: postgres
variables:
POSTGRES_HOST_AUTH_METHOD: trust
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same problem here, really annoying.
Using the following
```
image: python:3.7.2
```
Even pipelines that were previously succeeding are now failing. No change were made to repo variables as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's surely on BB's side. This has been like this for about 5 days or more now.
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.
We tried upgrading to a newer image (python:3.8.10) and still got the same result, no logs no hints as to what went wrong.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.