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
29 lines
614 B
YAML
29 lines
614 B
YAML
name: Test OS Containers
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
test-env-virtual:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
PKGMGR_DISTRO: [arch, debian, ubuntu, fedora, centos]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Show commit SHA
|
|
run: git rev-parse HEAD
|
|
|
|
- name: Show Docker version
|
|
run: docker version
|
|
|
|
- name: Run container tests (${{ matrix.distro }})
|
|
run: |
|
|
set -euo pipefail
|
|
PKGMGR_DISTRO="${{ matrix.distro }}" make test-env-virtual
|