Make out/Static/obj accessible for fiddler autodeployment

Required for https://skia-review.googlesource.com/c/buildbot/+/487217

Bug: skia:12788
Change-Id: Idc675c6e1569d52f653c3c08e706e4af1007abd2
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/492118
Reviewed-by: Joe Gregorio <jcgregorio@google.com>
Commit-Queue: Ravi Mistry <rmistry@google.com>
This commit is contained in:
Ravi Mistry 2022-01-06 15:30:56 -05:00 committed by SkCQ
parent 63fa65ad07
commit 656986540c

View File

@ -58,4 +58,7 @@ RUN cd /tmp/skia/skia \
&& ./bin/gn gen out/Static \
&& git rev-parse HEAD > VERSION \
&& /tmp/depot_tools/ninja -C out/Static \
&& chown -R skia:skia .
&& chown -R skia:skia . \
# obj is readable only by the skia user. It needs additional
# permissions to be accessible for CI (see https://review.skia.org/487217).
&& chmod 755 -R out/Static/obj