From b2c0bce5c62d3db699b4311a471acb2858796677 Mon Sep 17 00:00:00 2001 From: Matthew McEachen Date: Tue, 17 Dec 2024 19:24:14 -0800 Subject: [PATCH] don't need python or build tools for test-alpine --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1491ae3..fda3637 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -157,7 +157,7 @@ jobs: platforms: linux/arm64 - run: | docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/${{ matrix.arch == 'x64' && 'amd64' || 'arm64' }} node:${{ matrix.node-version }}-alpine -c "\ - apk add build-base git python3 py3-setuptools util-linux-dev --update-cache && \ + apk add util-linux-dev --update-cache && \ cd /tmp/project && \ npm ci && \ npm run prebuild && \