Marco Vanotti
Marco Vanotti
Hi @adityasharad ! I thought codeqlcli only needed to lookup the compiler invocations of the commands. My understanding is that when compiling with goma, you just use `gomacc` to build,...
@eepeep is taking a look at this CL
Thanks for the answer, @Alan32Liu . Indeed, this seems to be an issue. I am not sure how to make the VM access the private registry so it can download...
It seems like the documentation should include: * Grant access to the service account to the docker bucket (viewer? owner? lister?) * Grant access to the service account to the...
Thanks! Would it make sense to keep them in the main branch but not run them or to at least document that for newcomers?
Thanks for the reply! Are the worker pools something that needs to be configured? Do we need to do something besides enabling the worker pools api as instructed by the...
It seems like private worker pools can be created from the gcloud console. One of the fields they specify is the virtual network. For now I am leaving it empty.
I made a bit of progress with this. I was able to create the private worker pool (leaving virtual network details empty). The project needs a cloud bucket to be...
The password is correct and valid (with the non-alphanumeric characters). The problem is that the `alembic` script needs to escape the url before calling `create_engine`. See the [SQL Alchemy docs](https://docs.sqlalchemy.org/en/20/core/engines.html#escaping-special-characters-such-as-signs-in-passwords)...
On top of the issue with the url quotes, the config set option uses python interpolation strings, so it fails when the password contains `%`. I uploaded a PR that...