So, everything was working fine till around 10 AM yesterday. I have tried to run a build using bitbucket pipelines, but I keep getting this error :
rpc error: code = Unknown desc = no matching manifest for linux/amd64 in the manifest list entries
This is across all projects. We use gradle for build.
My bitbucket-pipelines file looks like this :
# This is a sample build configuration for Gradle.
# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples.
# Only use spaces toS indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
#image: java:8
image: gradle
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- gradle build -x test
- mkdir -p ~/.ssh
- cat my_known_hosts >> ~/.ssh/known_hosts
- (umask 077; echo $TRACKING_KEY | base64 --decode -i > ~/.ssh/id_rsa)
- cd build/libs
- cp x*.jar x.jar
- scp -rp x.jar root@x.x.x.x:/something
It appears there may have been an intermittent outage related to gradle images on dockerhub - see https://github.com/docker/hub-feedback/issues/1618.
Are you still experiencing issues?
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.