1.3.0: ci: rollback change image #1
Some checks failed
Test Pipeline / lint (pull_request) Failing after 2m26s
Test Pipeline / ci-test (pull_request) Failing after 2m59s

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2025-09-26 02:13:19 +02:00
commit e80bf3abc3
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632
2 changed files with 14 additions and 13 deletions

View file

@ -23,7 +23,6 @@ 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
@ -31,8 +30,19 @@ jobs:
- name: Install docker-cli
run: |
apk update && apk add --no-cache docker-cli
apk add bash
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
- name: Set up QEMU
uses: docker/setup-qemu-action@v3