-
Notifications
You must be signed in to change notification settings - Fork 90
50 lines (48 loc) · 1.24 KB
/
e2e-main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: E2E - Main
on:
push:
branches:
- main
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'End-to-end Tests'
# Cron job to run e2e tests @ 8:30 pm daily on the latest commit on the default branch - main
schedule:
- cron: '30 20 * * *'
# Cancel any in progress run of the workflow for a given PR
# This avoids building outdated code
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
android:
name: Android
strategy:
max-parallel: 2
fail-fast: false
matrix:
# TODO if/when more CI machines: enable Android sdk 21, 23, 29 and 31
# 21 is failing 9 specs
# 23 is failing ? spec(s)
# 31 is failing ? spec(s)
android-api-level: [24, 30]
uses: ./.github/workflows/e2e-android.yml
with:
android-api-level: ${{ matrix.android-api-level }}
secrets: inherit
ios:
name: iOS
strategy:
max-parallel: 2
fail-fast: false
matrix:
ios-version: ['14.5', '15.0']
uses: ./.github/workflows/e2e-ios.yml
with:
ios-version: ${{ matrix.ios-version }}
secrets: inherit