fix: test gh runner #55
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/oxen-io/session-android/dev/session-android-20240815T053242Z-93a28906f-universal.tar.xz' | |
sha_to_co: | |
description: 'oxen-io/session-appium sha to checkout (can be in a PR)' | |
required: true | |
type: string | |
default: '3c2ced8' | |
push: | |
branches: | |
- test-docker-container | |
# ${{ inputs.apk_url }} | |
# ${{ inputs.sha_to_co }} | |
jobs: | |
android-regression: | |
runs-on: [self-hosted, linux, x64, qa-android] | |
env: | |
apk_url: 'https://oxen.rocks/oxen-io/session-android/dev/session-android-20240815T053242Z-93a28906f-universal.tar.xz' | |
sha_to_co: '3c2ced8' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Runner Details | |
run: | | |
echo "sha_to_co $sha_to_co" | |
echo "apk_url $apk_url" | |
- name: Download APK | |
run: | | |
wget -q -O plop.apk.tar.xz $apk_url | |
ls | |
pwd | |
- name: Extract APK | |
run: | | |
tar xf plop.apk.tar.xz | |
mv session-android-*universal extracted | |
ls | |
pwd | |
- name: Rename APK | |
run: | | |
mv session-android-*universal extracted | |
ls extracted | |
pwd | |
- uses: actions/checkout@v4 | |
with: | |
# Repository name with owner. For example, actions/checkout | |
# Default: ${{ github.repository }} | |
repository: 'oxen-io/session-appium' | |
# The branch, tag or SHA to checkout. When checking out the repository that | |
# triggered a workflow, this defaults to the reference or SHA for that event. | |
# Otherwise, uses the default branch. | |
ref: '$sha_to_co' | |