Solved variable bug
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

This commit is contained in:
Kevin Veen-Birkenbach
2025-12-13 15:27:06 +01:00
parent 097e64408f
commit 506f69d8a7
7 changed files with 6 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: [arch, debian, ubuntu, fedora, centos]
PKGMGR_DISTRO: [arch, debian, ubuntu, fedora, centos]
steps:
- name: Checkout repository

View File

@@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: [arch, debian, ubuntu, fedora, centos]
PKGMGR_DISTRO: [arch, debian, ubuntu, fedora, centos]
steps:
- name: Checkout repository

View File

@@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: [arch, debian, ubuntu, fedora, centos]
PKGMGR_DISTRO: [arch, debian, ubuntu, fedora, centos]
steps:
- name: Checkout repository

View File

@@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: [arch, debian, ubuntu, fedora, centos]
PKGMGR_DISTRO: [arch, debian, ubuntu, fedora, centos]
steps:
- name: Checkout repository

View File

@@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: [arch, debian, ubuntu, fedora, centos]
PKGMGR_DISTRO: [arch, debian, ubuntu, fedora, centos]
steps:
- name: Checkout repository

View File

@@ -26,10 +26,6 @@
packages = forAllSystems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
# Single source of truth for pkgmgr: Python 3.11
# - Matches pyproject.toml: requires-python = ">=3.11"
# - Uses python311Packages so that PyYAML etc. are available
python = pkgs.python311;
pyPkgs = pkgs.python311Packages;
in

View File

@@ -6,7 +6,7 @@ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
# shellcheck source=./scripts/build/base.sh
source "${SCRIPT_DIR}/base.sh"
: "${distro:?Environment variable 'distro' must be set (arch|debian|ubuntu|fedora|centos)}"
: "${PKGMGR_DISTRO:?Environment variable 'PKGMGR_DISTRO' must be set (arch|debian|ubuntu|fedora|centos)}"
NO_CACHE=0
MISSING_ONLY=0