-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (47 loc) · 1.4 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
56
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.30"
pullFiles: EXTERNAL_STORAGE:Documents/allure-results,APP_DATA:files/allure-results
- 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.16"
# - name: Upload artifact parallel
# uses: actions/upload-artifact@v2
# with:
# name: output2
# path: output2