Skip to content

CI (Nightly)

CI (Nightly) #497

Workflow file for this run

name: CI (Nightly)
on:
schedule:
- cron: '30 5 * * *'
workflow_dispatch:
jobs:
jest-test:
uses: ./.github/workflows/jest-test.yaml
create-timestamp:
uses: ./.github/workflows/create-timestamp.yaml
create-cache-key:
uses: ./.github/workflows/create-cache-key.yaml
android-build:
strategy:
matrix:
arch: [ x86_64, x86, arm64-v8a, armeabi-v7a ]
uses: ./.github/workflows/android-build.yaml
needs: create-cache-key
with:
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
arch: ${{ matrix.arch }}
android-test:
uses: ./.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-e2e-test-script:
# strategy:
# matrix:
# abi: [ x86_64, x86, arm64-v8a, armeabi-v7a ]
# fail-fast: false
# uses: ./.github/workflows/android-e2e-test-script.yaml
# needs: [ create-timestamp, create-cache-key, android-test ]
# with:
# timestamp: ${{ needs.create-timestamp.outputs.timestamp }}
# cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
# abi: ${{ matrix.abi }}
#android-e2e-test-actions:
# uses: ./.github/workflows/android-e2e-test-actions.yaml
# needs: [ create-timestamp, create-cache-key, android-test ]
# with:
# timestamp: ${{ needs.create-timestamp.outputs.timestamp }}
# cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
android-integration-test:
strategy:
matrix:
abi: [ x86_64, x86, arm64-v8a, armeabi-v7a ]
fail-fast: false
uses: ./.github/workflows/android-integration-test.yaml

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

View workflow run for this annotation

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

Invalid workflow file

error parsing called workflow ".github/workflows/ci-nightly.yaml" -> "./.github/workflows/android-integration-test.yaml" : failed to fetch workflow: workflow was not found.
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: ./.github/workflows/ios-build.yaml
needs: create-cache-key
with:
cache-key: ${{ needs.create-cache-key.outputs.cache-key }}
ios-integration-test:
uses: ./.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 }}