Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bazel support: Add test output to CI Bazel tests #1744

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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")
Loading