John Laxson
John Laxson
You can add/merge this to your tools/bazel wrapper to filter out the offending flag: ``` args=("$@") for index in "${!args[@]}"; do [[ "${args[index]}" == "--nolaunch_app" ]] && unset 'args[index]' done...
@kaplad Create an executable file in /tools/bazel with first line `#!/bin/bash` and remainder the script as above. Then when you run bazel as usual, it will first use that script...
@zvookin @abadams @steven-johnson @dsharletg
Also somewhere in codegen there should be a check that you have compute 3.0 if generating a GPUTexture buffer, but not sure where that should go
Rather unbelievably this works now. LLVM master has way way better error messages than 11 or whatever I was using before. Ready for review, beat me up.
Thanks @steven-johnson will do, hope to have some more side time come the holiday weeks.
Is there something required for RBE actions to get network access in CI?
@hrfuller @rickeylev Could you take a look please
Update still works without the tags, because you are `bazel run`ing the updater which runs locally, so the tags there are useless. no-remote-exec will never work in a scenario where...
Ha you're way ahead of me.