summaryrefslogtreecommitdiff
path: root/tests.build/build-stratum-with-submodules.script
blob: b3073af167c9c9a6e478c01088927fec8408dc91 (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
71
#!/bin/sh
#
# Copyright (C) 2011-2015  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program.  If not, see <http://www.gnu.org/licenses/>.


## Test build a stratum that uses a chunk which needs a submodule.

set -eu

# tests/setup creates a chunk-repo. We now create a new chunk, which
# uses chunk-repo as a submodule.

parent="$DATADIR/parent-repo"
mkdir "$parent"

echo "No real content here" > "$parent/dummy"

"$SRCDIR/scripts/run-git-in" "$parent" init --quiet
"$SRCDIR/scripts/run-git-in" "$parent" add .
"$SRCDIR/scripts/run-git-in" "$parent" \
    submodule --quiet add -b farrokh "$DATADIR/chunk-repo" le-sub > /dev/null
"$SRCDIR/scripts/run-git-in" "$parent" commit --quiet -m initial


# Modify the stratum to refer to the parent, not the submodule.

morphs="$DATADIR/morphs-repo"
cat <<EOF > "$morphs/parent.morph"
name: parent
kind: chunk
build-system: manual
build-commands:
  - test -f le-sub/README
EOF

cat <<EOF > "$morphs/hello-stratum.morph"
name: hello-stratum
kind: stratum
chunks:
  - name: parent
    morph: parent.morph
    repo: test:parent-repo
    ref: master
    morph: parent.morph
    build-depends: []
    build-mode: test
EOF
"$SRCDIR/scripts/run-git-in" "$morphs" add hello-stratum.morph parent.morph
"$SRCDIR/scripts/run-git-in" "$morphs" commit --quiet -m 'foo'


# Now build and verify we got a stratum.

"$SRCDIR/scripts/test-morph" build-morphology \
    test:morphs-repo master hello-system

system=$(ls "$DATADIR/cache/artifacts/"*hello-system-rootfs)
tar tf $system | LC_ALL=C sort | sed '/^\.\/./s:^\./::' | grep -v '^baserock/'