26 lines
584 B
YAML
26 lines
584 B
YAML
matrix:
|
|
bazel: [7.x]
|
|
platform: [ubuntu2004, macos, macos_arm64]
|
|
tasks:
|
|
verify_targets:
|
|
name: Verify build targets
|
|
bazel: ${{ bazel }}
|
|
platform: ${{ platform }}
|
|
build_targets:
|
|
- "@toolchains_llvm//toolchain:all"
|
|
- "@toolchains_llvm//platforms:all"
|
|
bcr_test_module:
|
|
module_path: tests
|
|
matrix:
|
|
bazel: [7.x]
|
|
platform: [ubuntu2004, macos, macos_arm64]
|
|
tasks:
|
|
run_test_module:
|
|
name: Run test module
|
|
bazel: ${{ bazel }}
|
|
platform: ${{ platform }}
|
|
build_targets:
|
|
- //:all
|
|
test_targets:
|
|
- //:all
|