mirror of
https://github.com/mudler/luet.git
synced 2025-06-25 15:01:55 +00:00
A new keyword `join` is introduced to generate the parent image. It takes precedence over a `requires` or a `image` already defined in a spec. It will generate all the artifacts from the packages listed and join them in a single image which will be used as parent for the package build process. This is a change which invalidates priorly generated hashes. Fixes #173
40 lines
1.2 KiB
Bash
Executable File
40 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
export LUET_NOLOCK=true
|
|
|
|
oneTimeSetUp() {
|
|
export tmpdir="$(mktemp -d)"
|
|
docker images --filter='reference=luet/cache' --format='{{.Repository}}:{{.Tag}}' | xargs -r docker rmi
|
|
}
|
|
|
|
oneTimeTearDown() {
|
|
rm -rf "$tmpdir"
|
|
docker images --filter='reference=luet/cache' --format='{{.Repository}}:{{.Tag}}' | xargs -r docker rmi
|
|
}
|
|
|
|
testBuild() {
|
|
[ "$LUET_BACKEND" == "img" ] && startSkipping
|
|
cat <<EOF > $tmpdir/default.yaml
|
|
extra: "bar"
|
|
foo: "baz"
|
|
EOF
|
|
mkdir $tmpdir/testbuild
|
|
luet build --tree "$ROOT_DIR/tests/fixtures/join" \
|
|
--destination $tmpdir/testbuild --concurrency 1 \
|
|
--compression gzip --values $tmpdir/default.yaml \
|
|
test/c
|
|
buildst=$?
|
|
assertEquals 'builds successfully' "$buildst" "0"
|
|
assertTrue 'create package c' "[ -e '$tmpdir/testbuild/c-test-1.2.package.tar.gz' ]"
|
|
mkdir $tmpdir/extract
|
|
tar -xvf $tmpdir/testbuild/c-test-1.2.package.tar.gz -C $tmpdir/extract
|
|
assertTrue 'create result from join' "[ -e '$tmpdir/extract/test3' ]"
|
|
assertTrue 'create result from join' "[ -f '$tmpdir/extract/newc' ]"
|
|
assertTrue 'create result from join' "[ -e '$tmpdir/extract/test4' ]"
|
|
}
|
|
|
|
|
|
# Load shUnit2.
|
|
. "$ROOT_DIR/tests/integration/shunit2"/shunit2
|
|
|