forked from flutter/tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cirrus.yml
81 lines (71 loc) · 2.6 KB
/
.cirrus.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
task:
name: tests-linux-0
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts/verify_tests_on_master.sh --shards 3 --shard-index 0
container:
image: gcc:latest
task:
name: tests-linux-1
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts/verify_tests_on_master.sh --shards 3 --shard-index 1
container:
image: gcc:latest
task:
name: tests-linux-2
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts/verify_tests_on_master.sh --shards 3 --shard-index 2
container:
image: gcc:latest
task:
name: tests-windows-0
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts\verify_tests_on_master.bat --shards 5 --shard-index 0
windows_container:
image: cirrusci/windowsservercore:2019
os_version: 2019
task:
name: tests-windows-1
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts\verify_tests_on_master.bat --shards 5 --shard-index 1
windows_container:
image: cirrusci/windowsservercore:2019
os_version: 2019
task:
name: tests-windows-2
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts\verify_tests_on_master.bat --shards 5 --shard-index 2
windows_container:
image: cirrusci/windowsservercore:2019
os_version: 2019
task:
name: tests-windows-3
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts\verify_tests_on_master.bat --shards 5 --shard-index 3
windows_container:
image: cirrusci/windowsservercore:2019
os_version: 2019
task:
name: tests-windows-4
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts\verify_tests_on_master.bat --shards 5 --shard-index 4
windows_container:
image: cirrusci/windowsservercore:2019
os_version: 2019
task:
name: tests-macos-0
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts/verify_tests_on_master.sh --shards 2 --shard-index 0
osx_instance:
image: ghcr.io/cirruslabs/macos-ventura-xcode:14.2
task:
name: tests-macos-1
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts/verify_tests_on_master.sh --shards 2 --shard-index 1
osx_instance:
image: ghcr.io/cirruslabs/macos-ventura-xcode:14.2
task:
name: skp_generator
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: (cd skp_generator && ./build.sh)
container:
image: gcc:latest