perfetto: use the new upstream repo

The old one was abandoned without so much as a README note.

This will also allow using newer releases than 47; the current one being
53, but this MR doesn't address that, as it aims to be a simple no-op
change.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38525>
This commit is contained in:
Eric Engestrom 2025-11-19 12:38:39 +01:00 committed by Marge Bot
parent 829bd406c0
commit 5db246a5ba
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ make-git-archive:
# Compactify the .git directory
- git gc --aggressive
# Download & cache the perfetto subproject as well.
- rm -rf subprojects/perfetto ; mkdir -p subprojects/perfetto && curl --fail https://android.googlesource.com/platform/external/perfetto/+archive/$(grep 'revision =' subprojects/perfetto.wrap | cut -d ' ' -f3).tar.gz | tar zxf - -C subprojects/perfetto
- rm -rf subprojects/perfetto ; mkdir -p subprojects/perfetto && curl --fail --location https://github.com/google/perfetto/archive/$(grep 'revision =' subprojects/perfetto.wrap | cut -d ' ' -f3).tar.gz | tar zxf - --strip-components=1 -C subprojects/perfetto
# compress the current folder
- tar -cvzf ../$CI_PROJECT_NAME.tar.gz .

View file

@ -1,6 +1,6 @@
[wrap-git]
directory = perfetto
url = https://android.googlesource.com/platform/external/perfetto
url = https://github.com/google/perfetto
revision = v47.0
depth = 1