Skip to content

Commit

Permalink
Merge pull request #3 from MarathonLabs/feature/system-image
Browse files Browse the repository at this point in the history
feat(inputs): add system image
  • Loading branch information
Malinskiy authored Oct 9, 2023
2 parents dc7ae45 + 180bbe6 commit c3bb056
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
| `testApplication` (required) | Test application binary path. <br>**Android**: `test_application` should point to the test .apk file for your app. <br>**iOS**: `test_application` should point to an ARM compatible iOS Test Runner app packaged in an ipa format or a zip archive. | | **Android**: `app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk` <br>**iOS**: `/home/user/workspace/sampleUITests-Runner.zip` or `/home/user/workspace/sampleUITests-Runner.ipa` |
| `platform` (required) | Testing platform | | `Android` or `iOS` |
| `osVersion` (optional) | Android or iOS OS version | | `11`, `15.5`, etc. |
| `systemImage` (optional) | OS-specific system image. For Android one of [default,google_apis]. For iOS only [default] | | `default`, `google_apis` |
| `output` (optional) | Output folder path | | `output` |
| `link` (optional) | Link to commit | | |
| `version` (optional) | marathon-cloud cli version to use | `latest` | `0.1.1` |
Expand Down
5 changes: 4 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ inputs:
osVersion:
description: "Android or iOS OS version"
required: false
systemImage:
description: "OS-specific system image. For Android one of [default,google_apis]. For iOS only [default]"
link:
description: "Link to commit"
required: false
Expand All @@ -42,12 +44,13 @@ runs:
with:
version: ${{ inputs.version }}
- name: Run tests using marathon-cloud
uses: MarathonLabs/[email protected].0
uses: MarathonLabs/[email protected].2
with:
apiKey: ${{ inputs.apiKey }}
application: ${{ inputs.application }}
testApplication: ${{ inputs.testApplication }}
platform: ${{ inputs.platform }}
osVersion: ${{ inputs.osVersion }}
systemImage: ${{ inputs.systemImage }}
link: ${{ inputs.link }}
output: ${{ inputs.output }}

0 comments on commit c3bb056

Please sign in to comment.