Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ on:
- nghttp2
- nghttp3
- ngtcp2
- perfetto
- postject
- root-certificates
- simdjson
Expand Down Expand Up @@ -237,6 +238,14 @@ jobs:
cat temp-output
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
rm temp-output
- id: perfetto
subsystem: deps
label: dependencies
run: |
./tools/dep_updaters/update-perfetto.sh > temp-output
cat temp-output
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
rm temp-output
- id: postject
subsystem: deps,test
label: test
Expand Down
2 changes: 1 addition & 1 deletion tools/dep_updaters/update-perfetto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ echo "$NEW_VERSION" > perfetto/VERSION
curl -sL -o "perfetto/LICENSE" "https://raw.githubusercontent.com/google/perfetto/refs/tags/$PERFETTO_REF/LICENSE"

# Remove C API headers. Only keep C++ API headers.
rm perfetto/sdk/perfetto_c.h perfetto/sdk/perfetto_c.cc
rm -f perfetto/sdk/perfetto_c.h perfetto/sdk/perfetto_c.cc

echo "Copying existing gyp files"
cp "$DEPS_DIR/perfetto/perfetto.gyp" "$WORKSPACE/perfetto"
Expand Down