From 2776d18a42cb68ddf94e2b7a01b0d3e34b658894 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Thu, 11 Dec 2025 16:31:00 +0100 Subject: [PATCH] Implemented arch support --- .github/workflows/test-container.yml | 5 ----- .github/workflows/test-e2e.yml | 5 ----- scripts/installation/run-package.sh | 6 ++++++ 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-container.yml b/.github/workflows/test-container.yml index 602a83d..a60c327 100644 --- a/.github/workflows/test-container.yml +++ b/.github/workflows/test-container.yml @@ -19,11 +19,6 @@ jobs: - name: Show 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 }}) run: | set -euo pipefail diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 6842e37..384b6fe 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -19,11 +19,6 @@ jobs: - name: Show 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 }}) run: | set -euo pipefail diff --git a/scripts/installation/run-package.sh b/scripts/installation/run-package.sh index 4b4d593..d782232 100755 --- a/scripts/installation/run-package.sh +++ b/scripts/installation/run-package.sh @@ -8,6 +8,12 @@ source "${SCRIPT_DIR}/lib.sh" 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}" case "${OS_ID}" in