Skip to content

Commit ce93d3c

Browse files
committed
permissions
Signed-off-by: Anas Nashif <[email protected]>
1 parent cabe08e commit ce93d3c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ jobs:
653653
# Download cached source files
654654
mkdir -p ${WORKSPACE}/sources
655655
pushd ${WORKSPACE}/sources
656-
aws s3 sync ${SRC_CACHE_URI} .
656+
aws s3 sync --quiet ${SRC_CACHE_URI} .
657657
popd
658658
659659
# Export environment variables
@@ -925,6 +925,8 @@ jobs:
925925
pushd ${POKY_DOWNLOADS}
926926
aws s3 sync ${SRC_CACHE_URI} .
927927
popd
928+
sudo chmod -R 777 ${GITHUB_WORKSPACE}
929+
sudo chmod -R 777 ${RUNNER_TEMP}
928930
929931
# Export environment variables
930932
echo "SRC_CACHE_URI=${SRC_CACHE_URI}" >> $GITHUB_ENV

meta-zephyr-sdk/recipes-devtools/qemu/qemu.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ SRC_URI = "https://download.qemu.org/${BPN}-${PV}.tar.xz \
3131
file://0008-Define-MAP_SYNC-and-MAP_SHARED_VALIDATE-on-needed-li.patch \
3232
file://0010-configure-lookup-meson-exutable-from-PATH.patch \
3333
file://0011-qemu-Ensure-pip-and-the-python-venv-aren-t-used-for-.patch \
34-
file://0001-sched_attr-Do-not-define-for-glibc-2.41.patch \
3534
file://qemu-guest-agent.init \
3635
file://qemu-guest-agent.udev \
3736
"

meta-zephyr-sdk/scripts/meta-zephyr-sdk-build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ newbuild build-zephyr-tools > /dev/null
105105
fi
106106
setconf_var "MACHINE" "$POKY_MACHINE" $localconf
107107
rm -f ./tmp/deploy/sdk/*.sh
108-
bitbake hosttools-tarball -c clean > /dev/null
109-
bitbake hosttools-tarball
108+
bitbake hosttools-tarball --quiet -c clean > /dev/null
109+
bitbake hosttools-tarball --quiet
110110
[ $? -ne 0 ] && echo "Error(s) encountered during bitbake." && exit 1
111111
cp ./tmp/deploy/sdk/*.sh $TOOLCHAINS
112112
[ $? -ne 0 ] && exit 1

0 commit comments

Comments
 (0)