-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (46 loc) · 1.27 KB
/
manual_trigger.yaml
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
name: "Manual Trigger Workflow"
on:
workflow_dispatch:
jobs:
build_android:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run tests
uses: ./
with:
apiKey: ${{ secrets.MARATHON_CLOUD_API_TOKEN }}
application: "example/app.apk"
testApplication: "example/appTest.apk"
platform: android
name: "android_3_0"
output: "output"
outputGlob: "tests/**"
version: "1.0.28"
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: output
path: output
build_ios:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run tests parallel
uses: ./
with:
apiKey: ${{ secrets.MARATHON_CLOUD_API_TOKEN }}
application: "example/sample.zip"
testApplication: "example/sampleUITests-Runner.zip"
platform: ios
name: "ios_3_0"
output: "output2"
outputGlob: "tests/**"
version: "1.0.27"
- name: Upload artifact parallel
uses: actions/upload-artifact@v2
with:
name: output2
path: output2