-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: branch and resultFile params were supported
- Loading branch information
Showing
3 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,14 +20,14 @@ jobs: | |
- name: Build app | ||
run: ./gradlew assembleDebug assembleAndroidTest | ||
- name: Run tests | ||
uses: MarathonLabs/[email protected].11 | ||
uses: MarathonLabs/[email protected].13 | ||
with: | ||
apiKey: ${{ secrets.MARATHON_CLOUD_API_TOKEN }} | ||
application: app/build/outputs/apk/debug/app-debug.apk | ||
testApplication: app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk | ||
platform: android | ||
output: "./results" | ||
version: "1.0.30" | ||
version: "1.0.38" | ||
``` | ||
## Inputs | ||
|
@@ -57,6 +57,8 @@ jobs: | |
| `xctestrunTestEnv` (optional) | Xctestrun testing environment variables, format: 'VAR1=VALUE1,VAR2=VALUE2' | `` | `VAR1=VALUE1,VAR2=VALUE2` | | ||
| `ignoreTestFailures` (optional) | When tests fail and this option is true then GHA will exit with code 0. By default, GHA will exit with code 1 in case of test failures and 0 for passing tests [possible values: true, false] | `false` | `true`, `false` | | ||
| `pullFiles` (optional) | Pull files from devices after the test run. The format is `ROOT1:PATH1,ROOT2:PATH2` where ROOT is one of [EXTERNAL_STORAGE, APP_DATA] and PATH is a relative path to the target file or directory. Note: Files with the same name and path from different devices may overwrite each other. | `` | `EXTERNAL_STORAGE:Documents/some-results,APP_DATA:files/my_folder/some_file.txt` | | ||
| `resultFile` (optional) | Result file path in a machine-readable format. You can specify the format via extension [yaml,json] | `result.json` | `some_result.json` | | ||
| `branch` (optional) | Branch for run, for example it could be git branch like develop or feature/about-screen | `` | `develop` | | ||
|
||
|
||
## marathon-cloud version | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,12 @@ inputs: | |
pullFiles: | ||
description: "Pull files from devices after the test run. The format is 'ROOT1:PATH1,ROOT2:PATH2' where ROOT is one of [EXTERNAL_STORAGE, APP_DATA] and PATH is a relative path to the target file or directory. Example: EXTERNAL_STORAGE:Documents/some-results,APP_DATA:files/my_folder/some_file.txt. Note: Files with the same name and path from different devices may overwrite each other." | ||
required: false | ||
resultFile: | ||
description: "Result file path in a machine-readable format. You can specify the format via extension [yaml,json]. Default file: result.json" | ||
required: false | ||
branch: | ||
description: "Branch for run, for example it could be git branch like develop or feature/about-screen" | ||
required: false | ||
branding: | ||
color: purple | ||
icon: play-circle | ||
|
@@ -81,7 +87,7 @@ runs: | |
with: | ||
version: ${{ inputs.version }} | ||
- name: Run tests using marathon-cloud | ||
uses: MarathonLabs/[email protected].9 | ||
uses: MarathonLabs/[email protected].10 | ||
with: | ||
apiKey: ${{ inputs.apiKey }} | ||
application: ${{ inputs.application }} | ||
|
@@ -105,3 +111,5 @@ runs: | |
xctestrunTestEnv: ${{ inputs.xctestrunTestEnv }} | ||
ignoreTestFailures: ${{ inputs.ignoreTestFailures }} | ||
pullFiles: ${{ inputs.pullFiles }} | ||
resultFile: ${{ inputs.resultFile }} | ||
branch: ${{ inputs.branch }} |