forked from OpenDSU/opendsu-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
octopus.json
138 lines (138 loc) · 4.03 KB
/
octopus.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"workDir": ".",
"dependencies": [
{
"name": "bar",
"src": "https://github.com/opendsu/bar.git"
},
{
"name": "bar-fs-adapter",
"src": "https://github.com/opendsu/bar-fs-adapter.git"
},
{
"name": "buffer-crc32",
"src": "https://github.com/opendsu/buffer-crc32.git"
},
{
"name": "double-check",
"src": "https://github.com/opendsu/double-check.git"
},
{
"name": "key-ssi-resolver",
"src": "https://github.com/opendsu/key-ssi-resolver.git"
},
{
"name": "node-fd-slicer",
"src": "https://github.com/opendsu/node-fd-slicer.git"
},
{
"name": "opendsu",
"src": "https://github.com/opendsu/opendsu-core.git"
},
{
"name": "cloud-enclave",
"src": "https://github.com/opendsu/remoteEnclaveServer.git"
},
{
"name": "acl-magic",
"src": "https://github.com/opendsu/acl-magic.git"
},
{
"name": "fast-svd",
"src": "https://github.com/OpenDSU/FastSVD.git"
},
{
"name": "overwrite-require",
"src": "https://github.com/opendsu/overwrite-require.git"
},
{
"name": "psk-bindable-model",
"src": "https://github.com/opendsu/psk-bindable-model.git"
},
{
"name": "pskbuffer",
"src": "https://github.com/opendsu/pskbuffer.git"
},
{
"name": "pskcrypto",
"src": "https://github.com/opendsu/pskcrypto.git"
},
{
"name": "psklogger",
"src": "https://github.com/opendsu/psklogger.git"
},
{
"name": "psk-cache",
"src": "https://github.com/opendsu/psk-cache.git"
},
{
"name": "soundpubsub",
"src": "https://github.com/opendsu/soundpubsub.git"
},
{
"name": "swarmutils",
"src": "https://github.com/opendsu/swarmutils.git"
},
{
"name": "syndicate",
"src": "https://github.com/opendsu/syndicate.git"
},
{
"name": "apihub",
"src": "https://github.com/opendsu/apihub.git"
},
{
"name": "psk-dbf",
"src": "https://github.com/opendsu/psk-dbf.git"
},
{
"name": "queue",
"src": "https://github.com/privatesky/queue.git"
},
{
"name": "psk-http-client",
"src": "https://github.com/privatesky/psk-http-client.git"
},
{
"name": "loki-enclave-facade",
"src": "https://github.com/OpenDSU/LokiEnclaveFacade.git"
},
{
"name": "ssapp-middleware",
"src": "https://github.com/opendsu/ssapp-middleware.git"
},
{
"name": "../tests",
"src": "https://github.com/OpenDSU/opendsu-sdk-tests.git"
},
{
"name": "cleanup any unnecessary files after dep installation",
"actions": [
{
"type": "remove",
"target": "latest-change-set.txt"
}
]
},
{
"name": "build opendsu-sdk",
"actions": [
{
"type": "execute",
"cmd": "npm run build"
}
]
}
],
"postBuild": [
{
"name": "backwards compatibility for old bundles location",
"actions": [
{
"type": "execute",
"cmd": "node -e 'console.log(\"\\n\\n### Warning: the OpenDSU bundles from now on will be available at a new path <opendsu-sdk/builds/output> instead of <opendsu-sdk/psknode/bundles>!\\n\\n\")'"
}
]
}
]
}