Skip to content

fix: nightly CI fixed with the new flows of zingo-mobile #360

fix: nightly CI fixed with the new flows of zingo-mobile

fix: nightly CI fixed with the new flows of zingo-mobile #360

Workflow file for this run

name: CI (Nightly)
on:
schedule:
- cron: '30 3 * * *'
workflow_dispatch:
jobs:
cargo-checkmate:
uses: ./.github/workflows/cargo-checkmate.yaml
reject-trailing-whitespace:
name: Reject trailing whitespace
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Reject trailing whitespace
run: ./utils/trailing-whitespace.sh reject
test:
uses: ./.github/workflows/test.yaml
create-timestamp:
uses: zingolabs/zingo-mobile/.github/workflows/create-timestamp.yaml@dev
create-cache-key:
uses: zingolabs/zingo-mobile/.github/workflows/create-cache-key.yaml@dev
android-build:
strategy:
matrix:
arch: [ x86_64, x86, arm64-v8a, armeabi-v7a ]
uses: zingolabs/zingo-mobile/.github/workflows/android-build.yaml

Check failure on line 35 in .github/workflows/ci-nightly.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-nightly.yaml

Invalid workflow file

invalid value workflow reference: no version specified
needs: create-cache-key
with:
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
arch: ${{ matrix.arch }}
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/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 }}