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
12 changes: 12 additions & 0 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ workflows:
- cocoapods-install@3:
inputs:
- source_root_path: '$BITRISE_SOURCE_DIR/example/ios'
- restore-cache@1:
title: Restore Detox Build Cache
inputs:
- key: |-
detox-build-{{ checksum "example/ios/Podfile.lock" }}-{{ checksum "example/app.json" }}
detox-build-
- script@1:
inputs:
- working_dir: example
Expand All @@ -63,6 +69,12 @@ workflows:
log\nset -x\n \n# we are building a release device configuration\npnpm
detox build --configuration ios.sim.release"
title: Detox Build
- save-cache@1:
title: Save Detox Build Cache
inputs:
- key: detox-build-{{ checksum "example/ios/Podfile.lock" }}-{{ checksum "example/app.json" }}
- paths: example/ios/build
- is_key_unique: "true"
- script@1:
inputs:
- working_dir: example
Expand Down