blob: 1e184cb9e81270322c7ec0bdf60f77bf1b886082 (
plain)
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
|
modules=" \
git \
change \
libbutl \
libbutl.bash \
build2 \
libbpkg \
bpkg \
bpkg-rep \
bdep \
brep \
libbbot \
bbot \
libstd-modules \
libbuild2-hello \
libbuild2-rust"
# During release it is useful to exclude some of these so can do mass
# commits (like version updates).
#
modules="$modules build2-toolchain"
modules="$modules buildos"
modules="$modules msvc-linux"
modules="$modules openssl-agent"
modules="$modules etc"
modules="$modules private"
# We don't tag git/, libbuild2-hello.
# And etc/, private/, build2-toolchain/ are tagged manually.
#
tag_modules=" \
libbutl \
libbutl.bash \
build2 \
libbpkg \
bpkg \
bpkg-rep \
bdep \
brep \
libbbot \
bbot \
libstd-modules \
msvc-linux \
openssl-agent \
buildos"
# Submodule update in build2-toolchain has to be done manually.
#
sub_modules=" \
etc \
private \
libbutl \
libbutl.bash \
build2 \
libbpkg \
bpkg \
bpkg-rep \
bdep \
brep \
libbbot \
bbot \
libstd-modules \
libbuild2-hello \
libbuild2-rust \
buildos \
msvc-linux \
openssl-agent"
|