Add MODULE.bzl

This commit is contained in:
Tony Aiuto 2022-10-19 12:12:46 -04:00
parent 212a486d66
commit ae155b604c
2 changed files with 13 additions and 3 deletions

View File

@ -1,8 +1,5 @@
---
tasks:
ubuntu1804:
build_targets:
- "//..."
ubuntu2004:
build_targets:
- "//..."
@ -12,3 +9,11 @@ tasks:
windows:
build_targets:
- "//..."
ubuntu2004:
# No need to check bzlmod on every platform. This repository only holds
# constants and has no per-platform behavior.
name: check_bzlmod
build_targets:
- "//..."
build_flags:
- "--experimental_enable_bzlmod"

5
MODULE.bazel Normal file
View File

@ -0,0 +1,5 @@
module(
name = "platforms",
version = "0.0.6", # keep in sync with version.bzl
compatibility_level = 1,
)