Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build-in-container-inner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ for repo in $repos; do
# Exclude acceptance test workdirs — they contain broken symlinks left
# over from previous test runs and are not needed for building.
# Also skip node_modules/vendor for hub builds.
# Also skip compilation results *.o, *.lo, *.la as the local copy is likely a different platform/OS than inside the container
if [ -d "$src" ] || [ -L "$src" ]; then
echo "Syncing $repo..."
sudo rsync -aL --exclude='config.cache' --exclude='workdir' \
--exclude='*.o' --exclude='*.lo' --exclude='*.la' \
--exclude='node_modules' --exclude='vendor' \
--chown="$(id -u):$(id -g)" "$src/" "$BASEDIR/$repo/"
else
Expand Down
Loading