Deployment error. Build failed: Build error details not available. Firebase Cloud Functions

Viewed 1936

I reinstalled multiple times NPM and Node on my pc.

(npm version 7.4.3)

(node version v15.7.0)

I followed the procedure for configuring the Firebase CLI with:

npm install -g firebase-tools

and firebase init and firebase deploy and the configuration seems to work fine.

The problem I'm facing happens when I open the index.js file and I uncomment the stock helloWorld function which looks like this:

exports.helloWorld = functions.https.onRequest((request, response) => {
functions.logger.info("Hello logs!", {structuredData: true});
response.send("Hello from Firebase!");
});

I run firebase deploy and I receive this error

functions[helloWorld(us-central1)]: Deployment error.
Build failed: Build error details not available. Please check the logs at https://console.    {urlStuff}


Functions deploy had errors with the following functions:
helloWorld


 To try redeploying those functions, run:
firebase deploy --only "functions:helloWorld"


 To continue deploying other features (such as database), run:
firebase deploy --except functions

 Error: Functions did not deploy properly.

I honestly don't know what to do now. I tried multiple times to re install node and npm and re doing the Firebase CLI procedure but nothing seems to solve this problem, I still receive this Error when deploying.

The log error I receive is this :

textPayload: "ERROR: error fetching storage source: generic::unknown: retry budget exhausted (3 attempts): fetching gcs source: unpacking source from gcs: source fetch container exited with non-zero status: 1"
4 Answers

For me, it was because I was using an older version of Firebase CLI.

So I ran the upgrade command as suggested, and it worked.

sudo npm i -g firebase-tools

(My Node version is v15.6.0)

I had a similar problem and wasn't solved by changing node version. What I had to do is actually enter Container Repos and delete both worker & cache images. Then I got it running (using node v12.22.1 and npm v6.14.12).

It's much easier to find and fix issue by examining the actual logs by using this command to open the log

firebase functions:log

The specific issue will be visible there. I sometimes had error as simple as a missing packages in package.json

I wish they could show better info on the errors directly. but at least we can find them here.

Related