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 / mark-stable (push) Has been cancelled
* Switch virgin root/user workflows to use *make install* + *make setup/setup-venv* * Add Git *safe.directory /src* to avoid flake evaluation failures on mounted repos * Enable Nix flake run in workflows and prepare */nix* for non-root execution * Refactor Arch packaging to build in an isolated */tmp* directory via *aur_builder* * Rename installer scripts (*run-** → *dependencies.sh* / *package.sh*) and adjust Docker entry + env var to *REINSTALL_PKGMGR* https://chatgpt.com/share/693c29d9-9b28-800f-a549-5661c783d968
50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
name: Test Virgin Root
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
test-virgin-root:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 45
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Show Docker version
|
|
run: docker version
|
|
|
|
- name: Virgin Arch pkgmgr flake test (root)
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
docker run --rm \
|
|
-v "$PWD":/src \
|
|
-v pkgmgr_repos:/root/Repositories \
|
|
-v pkgmgr_pip_cache:/root/.cache/pip \
|
|
-w /src \
|
|
archlinux:latest \
|
|
bash -lc '
|
|
set -euo pipefail
|
|
|
|
pacman -Syu --noconfirm git python python-pip nix make
|
|
|
|
# Fix: allow git operations on mounted repo path
|
|
git config --global --add safe.directory /src
|
|
|
|
make install
|
|
make setup
|
|
|
|
. "$HOME/.venvs/pkgmgr/bin/activate"
|
|
|
|
export NIX_CONFIG="experimental-features = nix-command flakes"
|
|
|
|
pkgmgr update pkgmgr --clone-mode shallow --no-verification
|
|
pkgmgr version pkgmgr
|
|
|
|
echo ">>> Running Nix-based: nix run .#pkgmgr -- version pkgmgr"
|
|
nix run /src#pkgmgr -- version pkgmgr
|
|
'
|
|
|