Skip to content
Merged
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
8 changes: 8 additions & 0 deletions benchmarks/.benchmarks-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ build-and-upload:app:
- echo "Installing DDSDK dependencies"
- yarn install

# `yarn install` does not run each workspace's `prepare` script (Yarn Berry only
# runs install/postinstall automatically), so packages that rely solely on
# `prepare` to produce their `lib/` output - like the babel plugin - are never
# built by the install step above. Build it explicitly so benchmarks' babel
# config (which loads @datadog/mobile-react-native-babel-plugin) can resolve it.
- echo "Building the babel plugin"
- (cd packages/react-native-babel-plugin && yarn prepare)

# Prepare Logs Directory
- cd $(pwd)/benchmarks
- mkdir -p logs
Expand Down