- Introduce `test-nix-flake-e2e.yml` workflow to run a full Arch-based virgin environment test with Nix flakes enabled and shared Docker caches - Ensure pkgmgr self-installation and flake-based installer path are exercised - Update .gitignore with additional build artifacts, Debian packaging files, and pkgmgr output directories
41 lines
470 B
Plaintext
41 lines
470 B
Plaintext
|
|
# Prevents unwanted files from being committed to version control.
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
.venvs/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/*
|
|
*.egg-info/
|
|
pkg
|
|
|
|
package-manager-*
|
|
|
|
# debian
|
|
debian/package-manager/
|
|
debian/debhelper-build-stamp
|
|
debian/files
|
|
debian/.debhelper/
|
|
debian/package-manager.substvars
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS noise
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Nix Cache to speed up tests
|
|
.nix/
|
|
|
|
# Ignore logs
|
|
*.log
|