Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/remote-build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,27 @@ jobs:
build:
runs-on: ubuntu-latest-xl
strategy:
fail-fast: false
matrix:
include:
- project_root: ./
variant: 'developmentDebug'

- project_root: Mobile-Expensify/
is_hybrid_build: true
variant: 'Debug'
steps:
- name: Checkout
# v4
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
with:
submodules: true
submodules: ${{ matrix.is_hybrid_build || false }}
token: ${{ secrets.OS_BOTIFY_TOKEN }}

- name: Setup Node
uses: ./.github/actions/composite/setupNode
with:
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}

- name: RNEF Remote Build - Android
uses: callstackincubator/android@a49920aadab9f41951944ea52bb7983fa6b20b03
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/remote-build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,29 @@ jobs:
build:
runs-on: macos-15-xlarge
strategy:
fail-fast: false
matrix:
include:
- project_root: ./
scheme: 'New Expensify Dev'
configuration: 'DebugDevelopment'

- project_root: Mobile-Expensify/
is_hybrid_build: true
scheme: 'Expensify Dev'
configuration: 'Debug'
steps:
- name: Checkout
# v4
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
with:
submodules: true
submodules: ${{ matrix.is_hybrid_build || false }}
token: ${{ secrets.OS_BOTIFY_TOKEN }}

- name: Setup Node
uses: ./.github/actions/composite/setupNode
with:
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}

- name: RNEF Remote Build - iOS
uses: callstackincubator/ios@4c2dcc0d6b9c35407cf294e17386b65258a3b6af
Expand Down