Skip to content

Commit 3a19bb3

Browse files
author
Haley Clark
committed
CI: GitHub: more debugging.
Something is off with the permission on the CI runner, which I cannot reproduce elsewhere...
1 parent e5fc3d5 commit 3a19bb3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docker/builders/ci/implementation_ci_debian_buster.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ cp /scratch/xpra-xorg.conf /etc/X11/xorg.conf || true
164164
# This function either freshly clones a git repository, or pulls from upstream remotes.
165165
# The return value can be used to determine whether recompilation is required.
166166
function clone_or_pull {
167+
find ./ -type d -exec chmod -R 755 '{}' \+
168+
find ./ -type f -exec chmod 644 '{}' \+
169+
167170
if git clone "$@" . ; then
168171
return 0 # Requires compilation.
169172
fi

scripts/extract_system_appimage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ elif [ "$ARCH" == "aarch64" ] || [ "$ARCH" == "armhf" ] ; then
119119
#wget "https://github.com/AppImage/AppImageKit/releases/download/13/AppRun-${ARCH}" -O ./AppDir/AppRun
120120
wget "https://github.com/AppImage/AppImageKit/releases/download/13/obsolete-AppRun-${ARCH}" -O ./AppDir/AppRun
121121
find ./AppDir -type d -exec chmod -R 755 '{}' \+
122-
find ./AppDir -type f -exec chmod -R 644 '{}' \+
122+
find ./AppDir -type f -exec chmod 644 '{}' \+
123123
124124
# Bundle required libraries, but exclude libraries known to be problematic.
125125
#wget 'https://raw.githubusercontent.com/AppImage/pkg2appimage/master/excludelist' -O - |

0 commit comments

Comments
 (0)