mirror of https://github.com/bazelbuild/platforms
commit
d9296d956d
|
@ -1,14 +1,46 @@
|
|||
---
|
||||
#
|
||||
# Bazel releases
|
||||
#
|
||||
lts: <s
|
||||
bazel: latest
|
||||
|
||||
rolling: &rolling
|
||||
bazel: rolling
|
||||
|
||||
|
||||
targets: &targets
|
||||
build_targets:
|
||||
- "//..."
|
||||
|
||||
|
||||
tasks:
|
||||
ubuntu1804:
|
||||
build_targets:
|
||||
- "//..."
|
||||
ubuntu2004:
|
||||
build_targets:
|
||||
- "//..."
|
||||
macos:
|
||||
build_targets:
|
||||
- "//..."
|
||||
windows:
|
||||
build_targets:
|
||||
- "//..."
|
||||
ubuntu_lts:
|
||||
name: ubuntu_lts
|
||||
platform: ubuntu2004
|
||||
<<: *lts
|
||||
<<: *targets
|
||||
ubuntu_rolling:
|
||||
name: ubuntu_rolling
|
||||
platform: ubuntu2004
|
||||
<<: *rolling
|
||||
<<: *targets
|
||||
macos_lts:
|
||||
name: macos_lts
|
||||
platform: macos
|
||||
<<: *lts
|
||||
<<: *targets
|
||||
windows_lts:
|
||||
name: windows_lts
|
||||
platform: windows
|
||||
<<: *lts
|
||||
<<: *targets
|
||||
check_bzlmod:
|
||||
name: check_bzlmod
|
||||
# No need to check bzlmod on every platform. This repository only holds
|
||||
# constants and has no per-platform behavior.
|
||||
platform: ubuntu2004
|
||||
<<: *rolling
|
||||
<<: *targets
|
||||
build_flags:
|
||||
- "--enable_bzlmod"
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
module(
|
||||
name = "platforms",
|
||||
version = "0.0.6", # keep in sync with version.bzl
|
||||
compatibility_level = 1,
|
||||
)
|
Loading…
Reference in New Issue