技术栈

bazel

butteringing
3 个月前
linux·软件构建·bazel·re api
BuildFarm Worker 简要分析更多BuildFarm/Bazel/Remote Execution API的文章见我的个人博客:仅关注任务队列和具体执行
糖果Autosar
10 个月前
bazel
Writing Bazel rules: library rule, depsets, providersIn the last article, we built a go_binary rule that compiled and linked a Go executable from a list of sources. This time, we’ll define a go_library rule that can compile a Go package that can be depended on by other libraries and binaries.
糖果Autosar
10 个月前
bazel
Writing Bazel rules: simple binary ruleThe learning curve for extending Bazel is steeper than simpler build systems like Make or SCons. Bazel rules are highly structured, and learning this structure takes time. However, this structure helps you avoid introducing unnecessary complication and un
m0_74043383
2 年前
bazel
bazel使用中存在的问题只开远端缓存时。kernel采用的bazel编译,遇到如下问题:1、Action 详情二进制文件解析为文本文件时报错,无法进一步比较分析导致缓存不命中的原因。--- JDK版本的问题
m0_74043383
2 年前
bazel
bazel远程缓存(Remote Cache)您可以将服务器设置为构建输出(即这些操作输出)的远程缓存。这些输出由输出文件名列表及其内容的哈希值组成。借助远程缓存,您可以重复使用其他用户的 build 中的构建输出,而不是在本地构建每个新输出。