Skip to content

Commit 608634e

Browse files
authored
Merge pull request zingolabs#1651 from juanky201271/dev_ci_nightly_fixed
CI nightly fixed
2 parents a2021ec + 7d1c963 commit 608634e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci-nightly.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,21 @@ jobs:
3939
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
4040
arch: ${{ matrix.arch }}
4141

42-
android-ubuntu-integration-test-actions:
42+
android-ubuntu-integration-test-ci:
4343
strategy:
4444
matrix:
45-
abi: [ x86_64, x86 ]
45+
config:
46+
- { abi: x86_64, api-level: 34, target: default }
47+
- { abi: x86, api-level: 29, target: default }
4648
fail-fast: false
4749
uses: zingolabs/zingo-mobile/.github/workflows/android-ubuntu-integration-test-ci.yaml@dev
4850
needs: [create-timestamp, android-build]
4951
with:
5052
timestamp: ${{ needs.create-timestamp.outputs.timestamp }}
5153
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
52-
abi: ${{ matrix.abi }}
53-
api-level: 29
54+
abi: ${{ matrix.config.abi }}
55+
api-level: ${{ matrix.config['api-level'] }}
56+
target: ${{ matrix.config.target }}
5457

5558
ios-build:
5659
strategy:

0 commit comments

Comments
 (0)