Skip to content

Commit

Permalink
fix: test gh runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Aug 16, 2024
1 parent d177c62 commit a7cf9e4
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 32 deletions.
32 changes: 0 additions & 32 deletions .drone.jsonnet

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/android-regression.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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

jobs:
android-regression:
runs-on: [self-hosted, linux, x64, qa-android]
steps:
- uses: actions/checkout@v4
- name: Runner Details
run: |
echo "pr_to_co ${{ inputs.pr_to_co }}"
echo "apk_url ${{ inputs.apk_url }}"
- name: Download APK
run: |
wget -qO- ${{ inputs.apk_url }} | tar xvz
ls
pwd

0 comments on commit a7cf9e4

Please sign in to comment.