1.3.0: ci: change to alpine image
Some checks failed
Test Pipeline / ci-test (pull_request) Failing after 38s
Test Pipeline / lint (pull_request) Failing after 1m24s

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2025-09-26 02:08:36 +02:00
commit ce6b78d13e
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632

View file

@ -23,6 +23,7 @@ jobs:
ci-test:
runs-on: raw
container:
image: node:22.20.0-alpine3.22
options: --privileged -v /var/run/docker.sock:/var/run/docker.sock
steps:
- name: Check out repository
@ -30,19 +31,8 @@ jobs:
- name: Install docker-cli
run: |
apt-get update
apt-get install -y ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y docker-ce-cli
apk update && apk add --no-cache docker-cli
apk add bash
- name: Set up QEMU
uses: docker/setup-qemu-action@v3