Implemented arch support

This commit is contained in:
Kevin Veen-Birkenbach
2025-12-11 16:31:00 +01:00
parent 7057ccfb95
commit 2776d18a42
3 changed files with 6 additions and 10 deletions

View File

@@ -19,11 +19,6 @@ jobs:
- name: Show Docker version - name: Show Docker version
run: docker version run: docker version
- name: Build test image with no cache (${{ matrix.distro }})
run: |
set -euo pipefail
distro="${{ matrix.distro }}" make build-no-cache
- name: Run container tests (${{ matrix.distro }}) - name: Run container tests (${{ matrix.distro }})
run: | run: |
set -euo pipefail set -euo pipefail

View File

@@ -19,11 +19,6 @@ jobs:
- name: Show Docker version - name: Show Docker version
run: docker version run: docker version
- name: Build test image with no cache (${{ matrix.distro }})
run: |
set -euo pipefail
distro="${{ matrix.distro }}" make build-no-cache
- name: Run E2E tests via make (${{ matrix.distro }}) - name: Run E2E tests via make (${{ matrix.distro }})
run: | run: |
set -euo pipefail set -euo pipefail

View File

@@ -8,6 +8,12 @@ source "${SCRIPT_DIR}/lib.sh"
OS_ID="$(detect_os_id)" OS_ID="$(detect_os_id)"
# Map Manjaro to Arch
if [[ "${OS_ID}" == "manjaro" ]]; then
echo "[run-package] Mapping OS 'manjaro' → 'arch'"
OS_ID="arch"
fi
echo "[run-package] Detected OS: ${OS_ID}" echo "[run-package] Detected OS: ${OS_ID}"
case "${OS_ID}" in case "${OS_ID}" in