-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheas.json
69 lines (69 loc) · 1.78 KB
/
eas.json
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
{
"cli": {
"version": ">= 3.15.1"
},
"build": {
"base": {
"android": {
"resourceClass": "large",
"image": "latest"
},
"ios": {
"resourceClass": "large",
"image": "latest"
},
"withoutCredentials": true,
"distribution": "internal"
},
"maven_android_artifacts": {
"extends": "base",
"config": "maven_android_artifacts.yml"
},
"maven_ios_artifacts": {
"extends": "base",
"config": "maven_ios_artifacts.yml"
},
"cut_release_branch": {
"extends": "base",
"config": "cut_release_branch.yml"
},
"update_podfile_lock": {
"extends": "base",
"config": "update_podfile_lock.yml"
},
"run_unit_tests": {
"extends": "base",
"config": "run_unit_tests.yml"
},
"complete_release": {
"extends": "base",
"config": "complete_release.yml"
},
"build_rntester": {
"extends": "base",
"config": "build_rntester.yml"
},
"build_rntester_prod": {
"extends": "base",
"config": "build_rntester_prod.yml"
},
"RNTV tvos-0.77.0 unit tests": {
"extends": "run_unit_tests",
"env": {
"REACT_NATIVE_REPO_URL": "https://github.com/react-native-tvos/react-native-tvos",
"REACT_NATIVE_REPO_BRANCH": "tvos-v0.77.0",
"REACT_NATIVE_RELEASE_BRANCH": "release-0.77.0-0rc5",
"REACT_NATIVE_RELEASE_VERSION": "0.77.0-0rc5"
}
},
"RN core 0.76-stable unit tests": {
"extends": "run_unit_tests",
"env": {
"REACT_NATIVE_REPO_URL": "https://github.com/facebook/react-native",
"REACT_NATIVE_REPO_BRANCH": "0.76-stable",
"REACT_NATIVE_RELEASE_BRANCH": "0.76-stable",
"REACT_NATIVE_RELEASE_VERSION": "0.76.1-0"
}
}
}
}