Skip to content

Commit

Permalink
[Circle CI] Fix: Error can't find ./android
Browse files Browse the repository at this point in the history
  • Loading branch information
guhungry committed Mar 8, 2024
1 parent b288c15 commit 8227854
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@ jobs:
node_version: '20.11'
steps:
- checkout
- rn/yarn_install
- rn/yarn_install:
yarn_install_directory: 'example'
- persist_to_workspace:
root: .
paths: .
analyse:
executor:
name: rn/linux_js
node_version: '20.11'
steps:
- attach_workspace:
at: .
- rn/yarn_install
- run:
name: Lint JS Code (ESLint)
command: yarn run lint
Expand All @@ -36,18 +39,20 @@ workflows:
- checkout_code
- rn/android_build:
name: build_android_debug
attach_workspace: true
workspace_root: "example"
project_path: "example/android"
build_type: debug
requires:
- analyse
build_image_version: 'latest'
java_options: '-Xmx2024m -XX:+UnlockExperimentalVMOptions -XX:+UseContainerSupport'
- rn/android_build:
name: build_android_release
attach_workspace: true
workspace_root: "example"
project_path: "example/android"
build_type: release
requires:
- analyse
build_image_version: 'latest'
java_options: '-Xmx2024m -XX:+UnlockExperimentalVMOptions -XX:+UseContainerSupport'
# - rn/android_test:
# detox_configuration: "android.emu.release"
# detox_loglevel: "trace"
Expand Down

0 comments on commit 8227854

Please sign in to comment.