Try manually installing docker
Some checks failed
/ check (aarch64-unknown-linux-musl) (push) Has been cancelled
/ clippy (push) Has been cancelled
/ tests (push) Has been cancelled
/ check (armv7-unknown-linux-musleabihf) (push) Has been cancelled
/ check (x86_64-unknown-linux-musl) (push) Has been cancelled
/ publish-docker (push) Has been skipped
/ publish-forgejo (push) Has been skipped
/ publish-crate (push) Has been skipped
/ build (map[artifact:linux-amd64 platform:linux/amd64 target:x86_64-unknown-linux-musl]) (push) Failing after 28s
/ build (map[artifact:linux-arm32v7 platform:linux/arm/v7 target:armv7-unknown-linux-musleabihf]) (push) Failing after 27s
/ build (map[artifact:linux-arm64v8 platform:linux/arm64 target:aarch64-unknown-linux-musl]) (push) Failing after 27s

This commit is contained in:
asonix 2024-02-07 21:50:04 -06:00
parent b65354f2c4
commit eff8a88381

View file

@ -63,11 +63,19 @@ jobs:
name: Checkout pict-rs
uses: https://github.com/actions/checkout@v4
-
name: install sudo
run: apt-get update && apt-get -y install sudo lsb-release
-
name: Set up docker
uses: https://github.com/docker-practice/actions-setup-docker@master
name: Install Docker
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
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 docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
-
name: Prepare Platform
run: |