We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10f6b85 commit e0efc18Copy full SHA for e0efc18
1 file changed
.github/workflows/main.yml
@@ -154,9 +154,10 @@ jobs:
154
uses: actions/cache@v4
155
with:
156
path: "~/.cache/bazel"
157
- key: bazel-${{ matrix.os }}-${{ matrix.build-type }}
158
- - run: bazel build -c opt //:snmalloc
159
- - run: bazel build -c opt //:snmalloc-rs
+ key: bazel-v2-${{ matrix.os }}-${{ matrix.build-type }}
+ - run: bazel clean --expunge
+ - run: bazel build -c opt --sandbox_debug --verbose_failures //:snmalloc 2>&1 || (cat $(bazel info output_base)/external/rules_foreign_cc*/*/build_log 2>/dev/null; false)
160
+ - run: bazel build -c opt --sandbox_debug --verbose_failures //:snmalloc-rs
161
- run: bazel test -c opt --config=asan //fuzzing:snmalloc_fuzzer
162
if: ${{ matrix.os != 'macos-14' && matrix.os != 'macos-15' }}
163
0 commit comments