From 2d07c32c95ee81f73c5dd0671db52feec81ee095 Mon Sep 17 00:00:00 2001 From: Samuel Freilich Date: Tue, 1 Apr 2025 17:51:11 -0400 Subject: [PATCH] Also run test CI in opt-mode Some of the crashes I'm trying to track down only occur with optimizations turned on. Others fail differently in opt-mode (due to compiled-out assertions). --- .github/workflows/bazel-test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/bazel-test.yaml b/.github/workflows/bazel-test.yaml index 27061f4..30b4fa4 100644 --- a/.github/workflows/bazel-test.yaml +++ b/.github/workflows/bazel-test.yaml @@ -16,3 +16,6 @@ jobs: - name: Test run: bazel test --test_output=errors --keep_going //... + + - name: Opt-Mode Test + run: bazel test -c opt --test_output=errors --keep_going //...