E2E - Main #282
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E - Main | |
on: | |
push: | |
branches: | |
- kolektivo | |
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.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
# TODO: enable once we have at least one android-api-level below | |
# 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) | |
# # 24 is currently failing all the time, disabling it for now | |
# # 30 is not included as it runs on the merge queue | |
# android-api-level: [] | |
# 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: | |
# 15.0 is not included as it runs on the merge queue | |
ios-version: ['17.2'] | |
uses: ./.github/workflows/e2e-ios.yml | |
with: | |
ios-version: ${{ matrix.ios-version }} | |
secrets: inherit |