HydraLab icon indicating copy to clipboard operation
HydraLab copied to clipboard

Could this runner be integrated with GitHub Actions?

Open adrienbrown2020 opened this issue 2 years ago • 1 comments
trafficstars

adrienbrown2020 avatar Dec 26 '22 01:12 adrienbrown2020

Hi @adrienbrown2020, are you using Hydra Lab to test an Android app or an iOS app?

For Android app test only, we have an Gradle plugin ready for use, see details here: Gradle plugin README. You may add a new "Gradle Build Action" task in your Git Actions workflow, a sample of the yml content as below:

- name: Gradle Build Action
  uses: gradle/[email protected]
  with:
    # Gradle command line arguments (supports multi-line input)
    arguments: [your gradle arguments after command "gradle"]

If your project is linked to Azure DevOps pipeline, you may add a new pipeline within ADO for running test using ADO pipeline syntax, by directly adding the gradle task within it. See details here: Trigger a test task run in the Hydra Lab test service.

An alternative Azure DevOps extension is also available for ADO pipeline usage, if you want to test an iOS app (or Android app as well), you may search for extension "Hydra Lab" in ADO marketplace, and involve the task accordingly.

Are above approaches solving your problem?

olivershen-wow avatar Apr 13 '23 03:04 olivershen-wow