Skip to content

Commit 7bd2d41

Browse files
rustyconoverclaude
andcommitted
Fix CI: replace rsync with cp -aL for manylinux compat
rsync is not installed in the manylinux_2_28 container image. Use cp -aL (dereference symlinks) instead. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 050e76b commit 7bd2d41

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-slim-wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ jobs:
190190
191191
# Build in isolated temp dir
192192
WORK_DIR=$(mktemp -d)
193-
rsync -a --exclude='build/' --exclude='dist/' --exclude='__pycache__/' \
194-
python/ "$WORK_DIR/python/"
195-
cp -r cpp/cmake_modules "$WORK_DIR/python/cmake_modules"
193+
cp -aL python/ "$WORK_DIR/python/"
194+
rm -rf "$WORK_DIR/python/build" "$WORK_DIR/python/dist" \
195+
"$WORK_DIR/python/__pycache__"
196196
cp "$WORK_DIR/python/pyproject.slim.toml" "$WORK_DIR/python/pyproject.toml"
197197
198198
cd "$WORK_DIR/python"

0 commit comments

Comments
 (0)