srctree

Robin Linden parent 7450d756 3007848c
ci: Use a debug build in the MSVC CI

Microsoft's standard library contains bounds checks for things like theissue fixed in the previous commit when built in a debug configuration,so this would have detected the issue in CI.

inlinesplit
.github/workflows/ci.yaml added: 4, removed: 4, total 0
@@ -104,11 +104,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: bazel build ///... --config msvc
run: bazel build ///... --config msvc --config debug
- name: Test
run: bazel test ///... --config msvc
run: bazel test ///... --config msvc --config debug
- name: Run
run: bazel run browser:tui --config msvc
run: bazel run browser:tui --config msvc --config debug
 
clang-format:
runs-on: ubuntu-20.04