|
1 | | ---- |
2 | | -bazel: 7.1.1 |
3 | | -# Note, this will tell the user to do the wrong thing (manually run buildifer) |
4 | | -# See https://github.com/bazelbuild/continuous-integration/issues/1161 |
5 | | -buildifier: |
6 | | - version: 6.4.0 |
7 | | - # Keep this in sync with the list in .pre-commit-config.yaml |
8 | | - # https://github.com/bazelbuild/buildtools/issues/479 should fix this by giving us a config file |
9 | | -tasks: |
10 | | - ubuntu1804: |
11 | | - name: ubuntu1804 |
12 | | - platform: ubuntu1804 |
13 | | - build_targets: |
14 | | - - "//..." |
15 | | - test_flags: |
16 | | - - "--test_tag_filters=-skip-on-bazelci-ubuntu" |
17 | | - test_targets: |
18 | | - - "//..." |
19 | | - ubuntu1804-headers: |
20 | | - name: ubuntu1804-headers |
21 | | - platform: ubuntu1804 |
22 | | - working_directory: "e2e/headers" |
23 | | - build_targets: |
24 | | - - "//..." |
25 | | - test_flags: |
26 | | - - "--test_tag_filters=-skip-on-bazelci-ubuntu" |
27 | | - test_targets: |
28 | | - - "//..." |
29 | | - ubuntu1804-smoke: |
30 | | - name: ubuntu1804-smoke |
31 | | - platform: ubuntu1804 |
32 | | - working_directory: "e2e/smoke" |
33 | | - build_targets: |
34 | | - - "//..." |
35 | | - test_flags: |
36 | | - - "--test_tag_filters=-skip-on-bazelci-ubuntu" |
37 | | - test_targets: |
38 | | - - "//..." |
39 | | - ubuntu1804-nodejs_host: |
40 | | - name: ubuntu1804-nodejs_host |
41 | | - platform: ubuntu1804 |
42 | | - working_directory: "e2e/nodejs_host" |
43 | | - build_targets: |
44 | | - - "//..." |
45 | | - test_flags: |
46 | | - - "--test_tag_filters=-skip-on-bazelci-ubuntu" |
47 | | - test_targets: |
48 | | - - "//..." |
49 | | - macos: |
50 | | - name: macos |
51 | | - platform: macos |
52 | | - build_targets: |
53 | | - - "//..." |
54 | | - test_flags: |
55 | | - - "--test_tag_filters=-skip-on-bazelci-macos" |
56 | | - test_targets: |
57 | | - - "//..." |
58 | | - macos-headers: |
59 | | - name: macos-headers |
60 | | - platform: macos |
61 | | - working_directory: "e2e/headers" |
62 | | - build_targets: |
63 | | - - "//..." |
64 | | - test_flags: |
65 | | - - "--test_tag_filters=-skip-on-bazelci-macos" |
66 | | - test_targets: |
67 | | - - "//..." |
68 | | - macos-smoke: |
69 | | - name: macos-smoke |
70 | | - platform: macos |
71 | | - working_directory: "e2e/smoke" |
72 | | - build_targets: |
73 | | - - "//..." |
74 | | - test_flags: |
75 | | - - "--test_tag_filters=-skip-on-bazelci-macos" |
76 | | - test_targets: |
77 | | - - "//..." |
78 | | - windows-smoke: |
79 | | - name: windows-smoke |
80 | | - platform: windows |
81 | | - working_directory: "e2e/smoke" |
82 | | - build_targets: |
83 | | - - "//..." |
84 | | - test_flags: |
85 | | - - "--test_tag_filters=-skip-on-bazelci-windows" |
86 | | - test_targets: |
87 | | - - "//..." |
88 | | - windows-nodejs_host: |
89 | | - name: windows-nodejs_host |
90 | | - platform: windows |
91 | | - working_directory: "e2e/nodejs_host" |
92 | | - build_targets: |
93 | | - - "//..." |
94 | | - test_flags: |
95 | | - - "--test_tag_filters=-skip-on-bazelci-windows" |
96 | | - test_targets: |
97 | | - - "//..." |
98 | | - rbe_ubuntu1604-smoke: |
99 | | - name: rbe_ubuntu1604-smoke |
100 | | - platform: rbe_ubuntu1604 |
101 | | - working_directory: "e2e/smoke" |
102 | | - build_targets: |
103 | | - - "//..." |
104 | | - test_targets: |
105 | | - - "//..." |
| 1 | +bcr_test_module: |
| 2 | + module_path: e2e/smoke |
| 3 | + matrix: |
| 4 | + platform: |
| 5 | + - ubuntu2204 |
| 6 | + - macos |
| 7 | + - windows |
| 8 | + bazel: |
| 9 | + - 7.x |
| 10 | + - 8.x |
| 11 | + - 9.* |
| 12 | + tasks: |
| 13 | + run_test_module: |
| 14 | + name: Run test module |
| 15 | + platform: ${{ platform }} |
| 16 | + bazel: ${{ bazel }} |
| 17 | + test_targets: |
| 18 | + - //... |
0 commit comments