File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ linux_aarch64_task:
46
46
<< : *RUN_TESTS
47
47
48
48
windows_x86_task :
49
- # The task takes ~55 minutes while the timeout happens
50
- # after 60 minutes by default, let's allow some wiggle room.
49
+ # The task takes ~55 minutes while the timeout happens after 60 minutes by default,
50
+ # let's allow some wiggle room.
51
51
timeout_in : 120m
52
52
windows_container :
53
53
image : cirrusci/windowsservercore:visualstudio2022
Original file line number Diff line number Diff line change 28
28
)
29
29
30
30
# Detect CI services which have the Android SDK pre-installed.
31
- ci_supports_build = any (
32
- key in os .environ
33
- for key in [
34
- "GITHUB_ACTIONS" ,
35
- "TF_BUILD" , # Azure Pipelines
36
- ]
31
+ ci_supports_build = (
32
+ ("CIRRUS_CI" in os .environ and platform .system () == "Darwin" )
33
+ or "GITHUB_ACTIONS" in os .environ
34
+ or "TF_BUILD" in os .environ # Azure Pipelines
37
35
)
38
36
39
37
if "ANDROID_HOME" not in os .environ :
You can’t perform that action at this time.
0 commit comments