Skip to content

Commit

Permalink
ci: debug xz compression issue
Browse files Browse the repository at this point in the history
  • Loading branch information
reubenmiller committed Nov 29, 2023
1 parent f349b2c commit b2dd8e1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions run-bakery
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@ if [ -n "$CI" ]; then
# such as xz which tries to change the group ownership of the compressed
# file.
ls -la build/
echo "Checking lsattr"
sudo lsattr build/* ||:
echo "Checking build folder ownership: user=$(whoami)"
sudo chown "$(whoami):$(whoami)" -R build ||:
sudo chown "$(whoami):$(whoami)" -R . ||:
sudo chmod 755 build ||:
sudo chmod 777 build/* ||:
echo "After chown"
# sudo chattr -i build/*.* ||:
echo "After fix"
ls -la build/
echo "Checking lsattr"
sudo lsattr build/* ||:
fi

0 comments on commit b2dd8e1

Please sign in to comment.