aboutsummaryrefslogtreecommitdiff
path: root/.bazelci/tests.yml
blob: 68fc0aee2e74f8dc857052f013d817217cfdca25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79

default_tests: &default_tests
  test_targets:
    - "//tests/..."
    - "//examples/..."

#
# Bazel releases
#
lts: &lts
  bazel: latest

rolling: &rolling
  bazel: rolling


#
# Commmon features by platform
# 
ubuntu2004: &ubuntu
  platform: ubuntu2004
  <<: *default_tests
  build_targets:
    - "//distro:distro"
    - "//distro:relnotes"

macos: &macos
  platform: macos
  <<: *default_tests

windows: &windows
  platform: windows
  test_targets:
    - "//tests/..."
    - "//examples/..."
    - "-//examples/manifest/..."



# The cross product of bazel releases X platforms
#
tasks:
  lts_ubuntu:
    name: lts_ubuntu
    <<: *ubuntu
    <<: *lts
  rolling_ubuntu:
    name: rolling_ubuntu
    <<: *ubuntu
    <<: *rolling
  lts_macos:
    name: lts_macos
    <<: *macos
    <<: *lts
  rolling_macos:
    name: rolling_macos
    <<: *macos
    # It seems there is no rolling Bazel for macos.
    bazel: last_green
  lts_windows:
    name: lts_windows
    <<: *windows
    <<: *lts
  rolling_windows:
    name: rolling_windows
    <<: *windows
    <<: *rolling
  #
  # Smoke test with bzlmod
  # 
  bzlmod_rolling_ubuntu:
    name: bzlmod_rolling_ubuntu
    <<: *ubuntu
    <<: *rolling
    build_flags:
      - "--enable_bzlmod"
    build_targets:
      - "//distro:distro"
      - "//distro:relnotes"