I am not familiar with the plugin, but is there an intermediate build additionally going on as part of CI/CD? You might be deploying the files needed for the build as well as the built files.
With my production node applications, I do a two step build and deploy to ensure unit tests pass before deploying. This triggers a cloud build independent of the cloud build for deploying (this might be node specific). Initially, I was deploying both the final build files as well as the src files needed to build in the first place. To get around this, I copied a separate deploy specific gcloudignore file in place upon successful run of tests right before deploying. This then skipped all src files that were otherwise needed to do the initial test build. On Tuesday, January 28, 2020 at 12:14:05 PM UTC-6, DIEGO GARCIA TEBA wrote: > > Hi, > > I'm experiencing that deploying with Cloud SDK Maven Plugin > <https://cloud.google.com/appengine/docs/standard/java/tools/maven-reference#appenginedeploy> > > is generating bigger apps than deploying with AppCfg. I've seen that inside > target directory, a folder named "appengine-staging" is generated. I don't > know if this is the cause of the file increment. > > Anyone has the same behaviour? > > Thanks in advance! > > Regards, > Diego > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/b568d093-6aad-4693-9526-5d618c7cbec9%40googlegroups.com.
