Skip to content

Commit

Permalink
fix: nightly CI fixed with the new flows of zingo-mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
juanky201271 committed Sep 19, 2024
1 parent eeb8119 commit 499cb6b
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions .github/workflows/ci-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,44 @@ jobs:
create-cache-key:
uses: zingolabs/zingo-mobile/.github/workflows/create-cache-key.yaml@dev

build-android:
android-build:
strategy:
matrix:
arch: [ x86_64, x86, arm64-v8a, armeabi-v7a ]
fail-fast: false
uses: zingolabs/zingo-mobile/.github/workflows/build.yaml@dev
uses: zingolabs/zingo-mobile/.github/workflows/android-build.yaml
needs: create-cache-key
with:
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
arch: ${{ matrix.arch }}

integration-test-android:
android-test:
uses: zingolabs/zingo-mobile/.github/workflows/android-test.yaml
needs: [ create-timestamp, android-build ]
with:
timestamp: ${{ needs.create-timestamp.outputs.timestamp }}
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}

android-macos-integration-test:
strategy:
matrix:
abi: [ x86_64, x86, arm64-v8a, armeabi-v7a ]
fail-fast: false
uses: zingolabs/zingo-mobile/.github/workflows/integration-test.yaml@dev
needs: [ create-timestamp, create-cache-key, build-android ]
uses: zingolabs/zingo-mobile/.github/workflows/android-macos-integration-test.yaml
needs: [ android-test ]
with:
timestamp: ${{ needs.create-timestamp.outputs.timestamp }}
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
abi: ${{ matrix.abi }}

ios-build:
uses: zingolabs/zingo-mobile/.github/workflows/ios-build.yaml
needs: create-cache-key
with:
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}

ios-integration-test:
uses: zingolabs/zingo-mobile/.github/workflows/ios-integration-test.yaml
needs: [ create-timestamp, ios-build ]
with:
timestamp: ${{ needs.create-timestamp.outputs.timestamp }}
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}

0 comments on commit 499cb6b

Please sign in to comment.