Implemented arch support
This commit is contained in:
5
.github/workflows/test-container.yml
vendored
5
.github/workflows/test-container.yml
vendored
@@ -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
|
||||||
|
|||||||
5
.github/workflows/test-e2e.yml
vendored
5
.github/workflows/test-e2e.yml
vendored
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user