Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed an error that bazel binary is not executable when testing with …
…remote execution. The cmd used to package final artifact didn't produce an executable file. It worked before since we always chmod(0555) the output files of a locally executed action and always set the input files to be executable when uploading to remote cache. However, this is no longer true with b6e3ba8. Tests can't execute the generated bazel binary with remote execution due to the missing executable bit. This change add `chmod a+x` to the cmd to make sure the final artifact is executable. PiperOrigin-RevId: 352784262
- Loading branch information