forked from youtube/cobalt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add container to symbolize crashpad crashes (youtube#778)
b/266761312 (cherry picked from commit 1ebccf6)
- Loading branch information
1 parent
87d1cd3
commit 0b58527
Showing
3 changed files
with
108 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
FROM cobalt-base | ||
|
||
RUN apt update -qqy \ | ||
&& apt install -qqy --no-install-recommends \ | ||
jq build-essential zlib1g-dev libzstd-dev \ | ||
&& /opt/clean-after-apt.sh | ||
|
||
RUN cd /tmp \ | ||
&& git clone 'https://chromium.googlesource.com/chromium/tools/depot_tools.git' | ||
|
||
ENV PATH=${PATH}:/tmp/depot_tools | ||
|
||
RUN mkdir breakpad \ | ||
&& cd breakpad \ | ||
&& fetch breakpad \ | ||
&& cd src \ | ||
&& ./configure \ | ||
&& make | ||
|
||
ARG GITHUB_TAG | ||
RUN curl -L \ | ||
-H "Accept: application/vnd.github+json" \ | ||
-H "X-GitHub-Api-Version: 2022-11-28" \ | ||
https://api.github.com/repos/youtube/cobalt/releases/tags/${GITHUB_TAG} \ | ||
> /tmp/release.json | ||
|
||
ARG ARCHITECTURE | ||
ARG SB_API_VERSION | ||
ARG CONFIG | ||
ENV CONTAINS_STRING unstripped_${ARCHITECTURE}_sbversion-${SB_API_VERSION}_${CONFIG} | ||
RUN jq -r --arg str "$CONTAINS_STRING" '.assets[] | select(.name | contains($str)) | .id' /tmp/release.json > /tmp/asset_ids.txt \ | ||
&& rm /tmp/release.json | ||
|
||
RUN while read asset_id; do \ | ||
curl -LJO \ | ||
-H "Accept: application/vnd.github+json" \ | ||
-H "X-GitHub-Api-Version: 2022-11-28" \ | ||
https://api.github.com/repos/youtube/cobalt/releases/assets/${asset_id}; \ | ||
done < /tmp/asset_ids.txt | ||
|
||
RUN id=$(cat /tmp/asset_ids.txt) && \ | ||
rm /tmp/asset_ids.txt && \ | ||
curl -s -L \ | ||
-H "Accept: application/octet-stream" \ | ||
-H "X-GitHub-Api-Version: 2022-11-28" \ | ||
https://api.github.com/repos/youtube/cobalt/releases/assets/$id -o /tmp/libcobalt.tgz | ||
|
||
RUN mkdir /tmp/cobalt-evergreen-snapshot/ && \ | ||
tar xzf /tmp/libcobalt.tgz -C /tmp/cobalt-evergreen-snapshot | ||
|
||
RUN breakpad/src/src/tools/linux/dump_syms/dump_syms /tmp/cobalt-evergreen-snapshot/libcobalt.so > /tmp/libcobalt.so.sym \ | ||
&& debug_id=$(head -n1 /tmp/libcobalt.so.sym | cut -d' ' -f4) \ | ||
&& mkdir -p /tmp/symbols/libcobalt.so/$debug_id/ \ | ||
&& mv /tmp/libcobalt.so.sym /tmp/symbols/libcobalt.so/$debug_id/ | ||
|
||
ENV GITHUB_TAG $GITHUB_TAG | ||
ENV ARCHITECTURE $ARCHITECTURE | ||
ENV SB_API_VERSION $SB_API_VERSION | ||
ENV CONFIG $CONFIG | ||
|
||
CMD echo "tag:${GITHUB_TAG} arch:${ARCHITECTURE} sbversion:${SB_API_VERSION} config:${CONFIG}" \ | ||
&& readelf -n /tmp/cobalt-evergreen-snapshot/libcobalt.so \ | ||
&& breakpad/src/src/processor/minidump_stackwalk /root/minidump_directory/minidump.dmp /tmp/symbols |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters