forked from flutter/tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
58 lines (51 loc) · 1.81 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
task:
name: tests-linux-0
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: scripts/verify_tests_on_master.sh --shards 2 --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 2 --shard-index 1
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 3 --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 3 --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 3 --shard-index 2
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: mojave-base
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: mojave-base
task:
name: skp_generator
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
script: (cd skp_generator && ./build.sh)
container:
image: gcc:latest