-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathworkspace.jsonnet
78 lines (78 loc) · 1.81 KB
/
workspace.jsonnet
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
{
name: 'blaze',
projects: {
ci: {
path: 'ci',
description: 'CI/CD related files',
},
'cli': {
path: 'cli',
description: 'Blaze command line interface crate.',
tags: ['rust']
},
'cli-docs': {
path: 'cli-docs',
description: 'Auto generated documentation for Blaze CLI (man files and mdx files for the website)',
tags: ['rust', 'docs']
},
'core': {
path: 'core',
description: 'Blaze main library crate.',
tags: ['rust']
},
'tests': {
path: 'tests',
description: 'Blaze integration tests suite.',
tags: ['rust']
},
'common': {
path: 'common',
description: 'Blaze shared data structures.',
tags: ['rust']
},
'node-bridge': {
path: 'node/bridge',
description: 'Blaze Node.js executors bridge script.',
tags: ['node']
},
'node-devkit': {
path: 'node/devkit',
description: 'Blaze Node.js executors devkit (library).',
tags: ['node']
},
'rust-bridge': {
path: 'rust/bridge',
description: 'Blaze Rust executors bridge executable.',
tags: ['rust']
},
'rust-devkit': {
path: 'rust/devkit',
description: 'Blaze Rust executors devkit (library).',
tags: ['rust']
},
'website': {
path: 'website',
description: 'Blaze main documentation website.',
tags: ['node', 'web']
},
'assets': {
path: 'assets',
description: 'Blaze brand assets.',
tags: []
},
'schemas': {
path: 'schemas',
description: 'Blaze JSON schemas.',
tags: ['node', 'docs']
},
'downloads': {
path: 'downloads',
description: 'Blaze downloads REST API',
tags: ['rust', 'web']
}
},
settings: {
logLevel: 'Debug',
parallelism: 'All'
}
}