Integrate the recently added file system cache `FsCache` into our object store `ObjectStore`. NB: This changes the semantics of it: previously a call to `ObjectStore.commit` resulted in the object being in the cache (i/o errors aside). But `FsCache.store`, which is now the backing store for objects, will only commit objects if there is enough space left. Thus we cannot rely that objects are present for reading after a call to `FsCache.store`. To cope with this we now always copy the object into the cache, even for cases where we previously moved it: for the case where commit is called with `object_id` matching `Object.id`, which is the case for when `commit` is called for last stage in the pipeline. We could keep this optimization but then we would have to special case it and not call `commit` for these cases but only after we exported all objects; or in other words, after we are sure we will never read from any committed object again. The extra complexity seems not worth it for the little gain of the optimization. Convert all the tests for the new semantic and also remove a lot of them that make no sense under this new paradigm. Add a new command line option `--cache-max-size` which will set the maximum size of the cache, if specified.
24 lines
922 B
Bash
Executable file
24 lines
922 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
# Get OS details.
|
|
source /etc/os-release
|
|
ARCH=$(uname -m)
|
|
DISTRO_CODE="${DISTRO_CODE:-${ID}-${VERSION_ID//./}}"
|
|
|
|
# get manifest-db at the version specified for this arch+distro
|
|
MANIFEST_DB_COMMIT=$(cat Schutzfile | jq -r '.global.dependencies."manifest-db".commit')
|
|
MANIFEST_DB_REPO="https://github.com/osbuild/manifest-db"
|
|
git clone "$MANIFEST_DB_REPO" manifest-db
|
|
cd manifest-db
|
|
git checkout "$MANIFEST_DB_COMMIT"
|
|
|
|
# update selinux labels for the image-info tool
|
|
OSBUILD_LABEL=$(matchpathcon -n /usr/bin/osbuild)
|
|
chcon $OSBUILD_LABEL tools/image-info
|
|
|
|
# set the maximum cache size to unlimited
|
|
echo "{}" | sudo osbuild --cache-max-size unlimited -
|
|
|
|
# run the tests from the manifest-db for this arch+distro
|
|
echo "Running the osbuild-image-test for arch $ARCH and ditribution $DISTRO_CODE"
|
|
sudo tools/osbuild-image-test --arch=$ARCH --distro=$DISTRO_CODE --image-info-path=tools/image-info
|