Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / codesniffer-ruff (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
https://chatgpt.com/share/693d6b63-12cc-800f-b55f-abc52ee7fb52
49 lines
1.4 KiB
Bash
Executable File
49 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
IMAGE="pkgmgr-${PKGMGR_DISTRO}"
|
|
|
|
echo "============================================================"
|
|
echo ">>> Running Nix flake-only test in ${PKGMGR_DISTRO} container"
|
|
echo ">>> Image: ${IMAGE}"
|
|
echo "============================================================"
|
|
|
|
docker run --rm \
|
|
-v "$(pwd):/src" \
|
|
-v "pkgmgr_nix_store_${PKGMGR_DISTRO}:/nix" \
|
|
-v "pkgmgr_nix_cache_${PKGMGR_DISTRO}:/root/.cache/nix" \
|
|
--workdir /src \
|
|
-e REINSTALL_PKGMGR=1 \
|
|
"${IMAGE}" \
|
|
bash -lc '
|
|
set -euo pipefail
|
|
|
|
if command -v git >/dev/null 2>&1; then
|
|
git config --global --add safe.directory /src || true
|
|
git config --global --add safe.directory /src/.git || true
|
|
git config --global --add safe.directory "*" || true
|
|
fi
|
|
|
|
echo ">>> preflight: nix must exist in image"
|
|
if ! command -v nix >/dev/null 2>&1; then
|
|
echo "NO_NIX"
|
|
echo "ERROR: nix not found in image '\'''"${IMAGE}"''\'' (PKGMGR_DISTRO='"${PKGMGR_DISTRO}"')"
|
|
echo "HINT: Ensure Nix is installed during image build for this distro."
|
|
exit 1
|
|
fi
|
|
|
|
echo ">>> nix version"
|
|
nix --version
|
|
|
|
echo ">>> nix flake show"
|
|
nix flake show . --no-write-lock-file >/dev/null
|
|
|
|
echo ">>> nix build .#default"
|
|
nix build .#default --no-link --no-write-lock-file
|
|
|
|
echo ">>> nix run .#pkgmgr -- --help"
|
|
nix run .#pkgmgr -- --help --no-write-lock-file
|
|
|
|
echo ">>> OK: Nix flake-only test succeeded."
|
|
'
|