Android regression tests #3
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
name: Android Regression Tests | |
on: | |
workflow_dispatch: | |
inputs: | |
APK_URL: | |
description: 'APK.tar.gz url to test' | |
type: string | |
required: true | |
COMMIT_HASH: | |
description: 'Commit of oxen-io/session-appium to checkout' | |
type: string | |
required: true | |
# push: | |
# branches: | |
# - test-docker-container | |
jobs: | |
run-tests-android: | |
runs-on: [self-hosted, linux, x64, qa-android] | |
steps: | |
- name: run the tests in the (already running) docker container | |
run: docker exec --env APK_URL=${{ inputs.APK_URL }} $(docker ps -q) sh -c "dl_and_test" |