-
Notifications
You must be signed in to change notification settings - Fork 5.8k
/
macos.rayci.yml
119 lines (110 loc) · 3.32 KB
/
macos.rayci.yml
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
group: macos tests
sort_key: "~macos"
steps:
# block on premerge and microcheck
- block: "run macos tests"
if: build.env("BUILDKITE_PIPELINE_ID") == "0189942e-0876-4b8f-80a4-617f988ec59b" || build.env("BUILDKITE_PIPELINE_ID") == "018f4f1e-1b73-4906-9802-92422e3badaa"
# build
- label: ":tapioca: build: :mac: wheels and jars (x86_64)"
key: macos_wheels_amd64
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- macos_wheels
- python_dependencies
job_env: MACOS
instance_type: macos
commands:
- ./ci/ray_ci/macos/macos_ci_build.sh build_x86_64
- label: ":tapioca: build: :mac: wheels and jars (aarch64)"
key: macos_wheels_arm64
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- macos_wheels
- python_dependencies
job_env: MACOS
instance_type: macos-arm64
commands:
- ./ci/ray_ci/macos/macos_ci_build.sh build_aarch64
# test
- label: ":ray: core: :mac: small & client tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- core_cpp
- python
- macos_wheels
- oss
job_env: MACOS
instance_type: macos
commands:
- ./ci/ray_ci/macos/macos_ci.sh run_small_test
- label: ":ray: core: :mac: medium a-j tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- core_cpp
- python
- macos_wheels
- oss
job_env: MACOS
instance_type: macos
commands:
- ./ci/ray_ci/macos/macos_ci.sh run_medium_a_j_test
- label: ":ray: core: :mac: medium k-z tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- core_cpp
- python
- macos_wheels
- oss
job_env: MACOS
instance_type: macos
commands:
- ./ci/ray_ci/macos/macos_ci.sh run_medium_k_z_test
- label: ":ray: core: :mac: large tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- core_cpp
- python
- macos_wheels
- oss
job_env: MACOS
instance_type: macos
parallelism: 3
commands:
- ./ci/ray_ci/macos/macos_ci.sh run_large_test
- label: ":ray: core: :mac: core and dashboard tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- core_cpp
- python
- dashboard
- macos_wheels
- oss
job_env: MACOS
instance_type: macos
commands:
- ./ci/ray_ci/macos/macos_ci.sh run_core_dashboard_test
- label: ":ray: core: :mac: core c++ and java tests"
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- cpp
- java
- macos_wheels
- oss
job_env: MACOS
instance_type: macos
commands:
- RAY_INSTALL_JAVA=1 ./ci/ray_ci/macos/macos_ci.sh run_ray_cpp_and_java
- label: ":ray: core: :mac: flaky tests"
key: macos_flaky_tests
if: build.env("BUILDKITE_PIPELINE_ID") != "0189e759-8c96-4302-b6b5-b4274406bf89"
tags:
- core_cpp
- python
- macos_wheels
- oss
- skip_on_premerge
job_env: MACOS
instance_type: macos
soft_fail: true
commands:
- ./ci/ray_ci/macos/macos_ci.sh run_flaky_tests