Skip to content

Commit

Permalink
Bazel support: Add test output to CI Bazel tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Vertexwahn committed May 5, 2024
1 parent 1b2b788 commit 3a93dde
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.0.2
7.1.1
8 changes: 4 additions & 4 deletions .github/workflows/bazel_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Build
run: |
bazelisk build //...
bazelisk test //...
bazelisk test --test_output=errors //...
build_and_test_windows:
name: Windows Server 2022 build <Visual Studio 2022>
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Build
run: |
bazelisk build //...
bazelisk test //...
bazelisk test --test_output=errors //...
build_and_test_macos:
name: macOS 13 Bazel build <Apple Clang14>
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Build
run: |
bazelisk build //...
bazelisk test //...
bazelisk test --test_output=errors //...
build_and_test_macos_M1:
name: macOS 14 Bazel build <Apple Clang14>
Expand All @@ -104,4 +104,4 @@ jobs:
- name: Build
run: |
bazelisk build //...
bazelisk test //...
bazelisk test --test_output=errors //...
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module(
compatibility_level = 1,
)

bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "bazel_skylib", version = "1.6.1")
bazel_dep(name = "imath", version = "3.1.11")
bazel_dep(name = "libdeflate", version = "1.19")
bazel_dep(name = "platforms", version = "0.0.8")
bazel_dep(name = "libdeflate", version = "1.20.bcr.1")
bazel_dep(name = "platforms", version = "0.0.10")

0 comments on commit 3a93dde

Please sign in to comment.