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
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ The Bitrise Build Cache CLI can be downloaded and run on any third-party CI prov
/tmp/bin/bitrise-build-cache activate react-native --gradle=true --xcode=true --cpp=false
```

CI is normally the environment that fills the cache. Pass `--cache-push` to activate write access alongside reads:

```
/tmp/bin/bitrise-build-cache activate react-native --cache-push
```

:::note

If you have previously used the Bitrise Build Cache CLI for Gradle or Xcode only, make sure you are on **CLI v1.0.0 or later** to get React Native support.
Expand Down Expand Up @@ -63,7 +69,7 @@ jobs:
curl --retry 5 -sSfL \
'https://raw.githubusercontent.com/bitrise-io/bitrise-build-cache-cli/main/install/installer.sh' \
| sh -s -- -b /tmp/bin -d
/tmp/bin/bitrise-build-cache activate react-native
/tmp/bin/bitrise-build-cache activate react-native --cache-push
- name: Install JS dependencies
run: yarn install
- name: Build iOS
Expand Down
Loading