diff --git a/.github/workflows/android-build-test-fabric.yml b/.github/workflows/android-build-test-fabric.yml index 0d3de6c5d..cebc438dd 100644 --- a/.github/workflows/android-build-test-fabric.yml +++ b/.github/workflows/android-build-test-fabric.yml @@ -9,6 +9,7 @@ on: - 'src/fabric/**' - 'FabricTestExample/**' - 'package.json' + - '.github/workflows/android-build-test-fabric.yml' push: branches: - main @@ -35,4 +36,4 @@ jobs: run: yarn - name: Build app working-directory: ${{ env.WORKING_DIRECTORY }}/android - run: ./gradlew assembleDebug --console=plain + run: ./gradlew assembleDebug --console=plain -PreactNativeArchitectures=arm64-v8a diff --git a/.github/workflows/android-build-test.yml b/.github/workflows/android-build-test.yml index 2f5f2f6fe..9dc332012 100644 --- a/.github/workflows/android-build-test.yml +++ b/.github/workflows/android-build-test.yml @@ -5,6 +5,9 @@ on: - main paths: - 'android/**' + - 'package.json' + - 'TestsExample/**' + - '.github/workflows/android-build-test.yml' push: branches: - main diff --git a/.github/workflows/android-e2e-test.yml b/.github/workflows/android-e2e-test.yml index 44bee6cc0..6a548b4be 100644 --- a/.github/workflows/android-e2e-test.yml +++ b/.github/workflows/android-e2e-test.yml @@ -7,6 +7,7 @@ on: - 'android/**' - 'common/**' - 'Example/**' + - 'TestsExample/**' push: branches: - main diff --git a/.github/workflows/ios-e2e-test.yml b/.github/workflows/ios-e2e-test.yml index 035d95bf6..7b4030c5a 100644 --- a/.github/workflows/ios-e2e-test.yml +++ b/.github/workflows/ios-e2e-test.yml @@ -8,6 +8,7 @@ on: - 'ios/**' - 'common/**' - 'Example/**' + - 'TestsExample/**' push: branches: - main diff --git a/FabricExample/android/app/build.gradle b/FabricExample/android/app/build.gradle index 0de42b2fc..3dede2d75 100644 --- a/FabricExample/android/app/build.gradle +++ b/FabricExample/android/app/build.gradle @@ -154,6 +154,11 @@ android { "-DANDROID_STL=c++_shared" } } + if (!enableSeparateBuildPerCPUArchitecture) { + ndk { + abiFilters (*reactNativeArchitectures()) + } + } } } diff --git a/FabricTestExample/android/app/build.gradle b/FabricTestExample/android/app/build.gradle index d74d0b583..19fceb4a2 100644 --- a/FabricTestExample/android/app/build.gradle +++ b/FabricTestExample/android/app/build.gradle @@ -152,6 +152,11 @@ android { "-DANDROID_STL=c++_shared" } } + if (!enableSeparateBuildPerCPUArchitecture) { + ndk { + abiFilters (*reactNativeArchitectures()) + } + } } }