-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy path_config.sh
More file actions
32 lines (27 loc) · 769 Bytes
/
_config.sh
File metadata and controls
32 lines (27 loc) · 769 Bytes
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
# All of our build recipes, new recipes should be added here.
recipes=(
"headers"
"x86"
"musl"
"armv6l"
"x64-glibc-217"
"x64-pointer-compression"
"x64-usdt"
"riscv64"
"loong64"
"x64-debug"
"arm64-musl"
)
# This should be updated as new versions of nodejs-dist-indexer are released to
# include new assets published here; this is not done automatically for security
# reasons.
dist_indexer_version=v1.7.1
image_tag_pfx=unofficial-build-recipe-
# Location of the recipes directory relative to this script
__dirname="$(CDPATH= cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
recipes_dir="${__dirname}/../recipes"
queuefile="$(realpath "${__dirname}/../../var/build_queue")"
recipe_exists() {
local recipe=$1
[ -d "${recipes_dir}/${recipe}" ]
}