Skip to content

Commit 974ec4f

Browse files
authored
ci(android): explicitly enable New Arch when building nightlies (#2546)
1 parent 6fb55d4 commit 974ec4f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/actions/gradle/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ runs:
1515
node --eval "require('./android/gradle-wrapper.js').configureGradleWrapper('${{ inputs.project-root }}/android')"
1616
shell: bash
1717
- name: Build
18+
if: ${{ github.event_name != 'schedule' }}
1819
run: ./gradlew ${{ inputs.arguments }}
1920
shell: bash
2021
working-directory: ${{ inputs.project-root }}/android
22+
- name: Build nightly
23+
if: ${{ github.event_name == 'schedule' }}
24+
run: ./gradlew -PnewArchEnabled=true ${{ inputs.arguments }}
25+
shell: bash
26+
working-directory: ${{ inputs.project-root }}/android

0 commit comments

Comments
 (0)