Skip to content

Commit 77d135b

Browse files
committed
fix(ci): drop coreutils from alpine job to match previous baseline
Busybox stat already supports `-c`, so installing coreutils is not required. Removing it also avoids exposing 7 extra acceptance tests that rely on a GNU environment and were previously skipped under busybox, which caused the upgrade test to break on Alpine CI.
1 parent ca892e3 commit 77d135b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
run: |
195195
docker run --rm -v "$(pwd)":/project alpine:latest /bin/sh -c " \
196196
apk update && \
197-
apk add --no-cache bash make git jq coreutils && \
197+
apk add --no-cache bash make git jq && \
198198
adduser -D builder && \
199199
chown -R builder /project && \
200200
su - builder -c 'cd /project; ${{ matrix.command }}';"

0 commit comments

Comments
 (0)