fix: test gh runner #46
Workflow file for this run
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: Run android regression tests | |
on: | |
workflow_dispatch: | |
inputs: | |
apk_url: | |
description: 'APK.tar.gz url to test' | |
required: true | |
type: string | |
default: 'https://oxen.rocks/RyanRory/loki-messenger-ios/onboarding/session-ios-20240718T023657Z-fe312a0d6-sim.tar.xz' | |
pr_to_co: | |
description: 'oxen-io/session-appium PR to checkout' | |
required: true | |
type: string | |
default: '10' | |
push: | |
branches: | |
- test-docker-container | |
# ${{ inputs.apk_url }} | |
# ${{ inputs.pr_to_co }} | |
jobs: | |
android-regression: | |
runs-on: [self-hosted, linux, x64, qa-android] | |
env: | |
apk_url: 'https://oxen.rocks/RyanRory/loki-messenger-ios/onboarding/session-ios-20240718T023657Z-fe312a0d6-sim.tar.xz' | |
pr_to_co: '10' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Runner Details | |
run: | | |
echo "pr_to_co $pr_to_co" | |
echo "apk_url $apk_url" | |
- name: Download APK | |
run: | | |
wget -qO- $apk_url | tar xvz | |
ls | |
pwd | |