forked from buildbuddy-io/buildbuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildbuddy.yaml
42 lines (42 loc) · 1.26 KB
/
buildbuddy.yaml
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
actions:
- name: Test
triggers:
push:
branches:
- "master"
pull_request:
branches:
- "master"
bazel_commands:
- test //... --config=workflows --test_tag_filters=-performance,-webdriver,-docker
- name: Benchmark
triggers:
push:
branches:
- "master"
bazel_commands:
- test //... --config=workflows --test_tag_filters=+performance
- name: Browser tests
triggers:
push:
branches:
- "master"
pull_request:
branches:
- "master"
bazel_commands:
# TODO(http://go/b/958): See if we can remove --remote_download_outputs=toplevel
- test //... --config=workflows --remote_download_outputs=toplevel --test_tag_filters=+webdriver
# TODO(bduffany): Move docker tests to the Test workflow when they are fast enough.
- name: Docker tests
triggers:
push:
branches:
- "master"
pull_request:
branches:
- "master"
bazel_commands:
# TODO(http://go/b/1249): Increase reliability of runner recycling when
# executing with high concurrency, and remove `--jobs=3`
- test //... --config=workflows --test_tag_filters=+docker --build_tag_filters=+docker --jobs=3