-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-build-launchers.sh
executable file
·74 lines (69 loc) · 1.69 KB
/
add-build-launchers.sh
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
#!/bin/bash
function usage() {
echo "Usage:"
echo "$0 <build name>"
}
if [ "$#" -ne 1 ]; then
>&2 usage
exit 1
fi
BUILD_NAME="$1"
JQ_TEMPLATE=$(cat << EOF
[
{
"name": "Launch build $BUILD_NAME",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "\${workspaceFolder}/main.go",
"args": [
"build",
"$BUILD_NAME",
"--output-directory-path",
"/tmp/output/$BUILD_NAME",
"--toolchain-directory-path",
"/tmp/output/cross-llvm",
"--root-fs-directory-path",
"/tmp/root-filesystem"
]
},
{
"name": "Launch package $BUILD_NAME",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "\${workspaceFolder}/main.go",
"args": [
"package",
"tarball",
"-c",
"--build-output-path",
"/tmp/output/$BUILD_NAME",
"--output-file-path",
"/tmp/package/$BUILD_NAME.tar.gz"
]
},
{
"name": "Launch install $BUILD_NAME",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "\${workspaceFolder}/main.go",
"args": [
"install",
"tarball",
"-c",
"-s",
"/tmp/package/$BUILD_NAME.tar.gz",
"-D",
"/tmp/root-filesystem"
]
}
]
EOF
)
LAUNCH_FILE=".vscode/launch.json"
TEMP_FILE="/tmp/launch.json"
jq -r --argjson BUILT_TEMPLATE "$JQ_TEMPLATE" '.configurations |= . + $BUILT_TEMPLATE' "$LAUNCH_FILE" > "$TEMP_FILE"
cat "$TEMP_FILE" > "$LAUNCH_FILE"
rm "$TEMP_FILE"