CircleCI builds are always retried

61 Views Asked by At

I'm using CircleCI with AWS CodeDeploy to automate the deployment of my app on EC2 from a Github repository.. The problem is that the build is always getting retried with this message given: "Looks like we had a bug in our infrastructure, or that of our providers (generally GitHub or AWS). We should have automatically retried this build. We've been alerted of the issue and are almost certainly looking into it, please contact us if you're interested in the cause or if the problem persists."

The last step the build stops after is called: "Bootstrap AWS CodeDeploy"

I don't know whether the problem is from the circle.yml file or the appspec.yml file!

Any Help??

1

There are 1 best solutions below

1
On

Are you able to see a deployment created on your AWS CodeDeploy console? If a deployment is created, then it means the build process succeeded, but the deployment failed. If deployment is failed, you can try to see the root cause for further investigation. Otherwise the failure should be something related to CircleCI.

Thanks, Binbin