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
Refactor CI to clearly separate virtualenv-based container tests from pure Nix flake tests across all distros (arch, debian, ubuntu, fedora, centos). Introduce dedicated test-env-nix workflow and Makefile targets, rename former container tests to test-env-virtual, and update stable pipeline dependencies. Improve Nix reliability in containers by fixing installer permissions and explicitly validating nix availability and version during image build and tests.
30 lines
544 B
YAML
30 lines
544 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
test-unit:
|
|
uses: ./.github/workflows/test-unit.yml
|
|
|
|
test-integration:
|
|
uses: ./.github/workflows/test-integration.yml
|
|
|
|
test-env-virtual:
|
|
uses: ./.github/workflows/test-env-virtual.yml
|
|
|
|
test-env-nix:
|
|
uses: ./.github/workflows/test-env-nix.yml
|
|
|
|
test-e2e:
|
|
uses: ./.github/workflows/test-e2e.yml
|
|
|
|
test-virgin-user:
|
|
uses: ./.github/workflows/test-virgin-user.yml
|
|
|
|
test-virgin-root:
|
|
uses: ./.github/workflows/test-virgin-root.yml
|