-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathk3gxx.code-workspace
94 lines (94 loc) · 1.75 KB
/
k3gxx.code-workspace
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
{
"folders": [
{
"name": "Device",
"path": "lineage/device/samsung/k3gxx"
},
{
"name": "vendor",
"path": "lineage/vendor/samsung/k3gxx"
},
{
"name": "kernel",
"path": "lineage/kernel/samsung/k3gxx"
},
{
"name": "hardware",
"path": "lineage/hardware/samsung"
},
{
"name": "exynos5",
"path": "lineage/hardware/samsung_slsi-cm/exynos5"
},
{
"name": "exynos5422",
"path": "lineage/hardware/samsung_slsi-cm/exynos5422"
},
{
"name": "openmax",
"path": "lineage/hardware/samsung_slsi-cm/openmax"
},
{
"name": "exynos",
"path": "lineage/hardware/samsung_slsi-cm/exynos"
},
{
"name": "manifests",
"path": "lineage/.repo/local_manifests"
}
],
"settings": {
"git.ignoreLimitWarning": true
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Sync",
"command": "repo",
"args": [
"sync",
"-d",
"-d",
"-c",
"--force-sync",
"--no-clone-bundle",
"--no-tags",
"-j$(nproc --all)",
"--fail-fast"
],
"options": {
"cwd": "/workspace/Gitpod-LineageOS-Build/lineage/"
},
"problemMatcher": []
},
{
"type": "shell",
"label": "setup",
"command": "source ",
"group": "test",
"args": [
"build/envsetup.sh",
],
"options": {
"cwd": "/workspace/Gitpod-LineageOS-Build/lineage/"
},
"problemMatcher": []
},
{
"type": "shell",
"label": "build",
"command": "brunch",
"group": "test",
"args": [
"k3gxx",
],
"options": {
"cwd": "/workspace/Gitpod-LineageOS-Build/lineage/"
},
"problemMatcher": []
}
]
}
}