-
Notifications
You must be signed in to change notification settings - Fork 0
89 lines (80 loc) · 2.15 KB
/
maestro-version-matrix.yml
File metadata and controls
89 lines (80 loc) · 2.15 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Test Multiple Maestro Versions - Android and iOS
on:
# Run at 3 AM UTC daily
schedule:
- cron: "0 3 * * *"
# Allow manual triggering
workflow_dispatch:
jobs:
test-android:
name: Android - Maestro ${{ matrix.maestro-version }}
runs-on: ubuntu-latest
strategy:
# Don't cancel all jobs if one fails
fail-fast: false
matrix:
maestro-version:
- "1.36.0"
- "1.37.0"
- "1.37.1"
- "1.37.2"
- "1.37.3"
- "1.37.4"
- "1.37.5"
- "1.37.6"
- "1.37.7"
- "1.37.8"
- "1.37.9"
- "1.38.1"
- "1.39.0"
- "1.39.1"
- "1.39.2"
- "1.39.4"
- "1.39.5"
- "1.39.7"
steps:
- uses: actions/checkout@v3
- name: Run Android Maestro Tests
uses: devicecloud-dev/device-cloud-for-maestro@v1
with:
api-key: ${{ secrets.DCD_API_KEY }}
app-file: ./binaries/sample.apk
flows: ./flows/ios-flow.yaml
maestro-version: ${{ matrix.maestro-version }}
name: "Android - Maestro ${{ matrix.maestro-version }} Test Run"
test-ios:
name: iOS - Maestro ${{ matrix.maestro-version }}
runs-on: ubuntu-latest
strategy:
# Don't cancel all jobs if one fails
fail-fast: false
matrix:
maestro-version:
- "1.36.0"
- "1.37.0"
- "1.37.1"
- "1.37.2"
- "1.37.3"
- "1.37.4"
- "1.37.5"
- "1.37.6"
- "1.37.7"
- "1.37.8"
- "1.37.9"
- "1.38.1"
- "1.39.0"
- "1.39.1"
- "1.39.2"
- "1.39.4"
- "1.39.5"
- "1.39.7"
steps:
- uses: actions/checkout@v3
- name: Run iOS Maestro Tests
uses: devicecloud-dev/device-cloud-for-maestro@v1
with:
api-key: ${{ secrets.DCD_API_KEY }}
app-file: ./binaries/sample.zip
workspace: ./flows/ios-flow.yaml
maestro-version: ${{ matrix.maestro-version }}
name: "iOS - Maestro ${{ matrix.maestro-version }} Test Run"