-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.js
More file actions
64 lines (64 loc) · 1.23 KB
/
update.js
File metadata and controls
64 lines (64 loc) · 1.23 KB
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
module.exports = {
run: [
// Pull launcher script updates
{
method: "shell.run",
params: {
message: "git pull"
}
},
// Pull UI app updates
{
method: "shell.run",
params: {
path: "app",
message: "git pull"
}
},
// Pull acestep.cpp updates and rebuild (macOS)
{
method: "shell.run",
params: {
path: "app/acestep.cpp",
message: "git pull && git submodule update --init --recursive"
}
},
{
when: "{{platform === 'darwin'}}",
method: "shell.run",
params: {
path: "app",
message: "bash build.sh"
}
},
{
when: "{{platform === 'linux' && arch === 'x64'}}",
method: "shell.run",
params: {
path: "app",
env: {
VULKAN_SDK: "{{envs.CONDA_PREFIX}}"
},
message: "bash build.sh"
}
},
// Update npm dependencies
{
method: "shell.run",
params: {
path: "app",
message: "npm install"
}
},
{
method: "shell.run",
params: {
path: "app/server",
message: [
"npm install",
"npm rebuild better-sqlite3"
]
}
}
]
}