Skip to content

Commit

Permalink
Disabling some steps for testing. - temp change
Browse files Browse the repository at this point in the history
  • Loading branch information
NidhiDixit09 committed Aug 9, 2024
1 parent 5096258 commit 5ecb2c8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/automation-trigger-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,29 @@ jobs:

# repo's gradle is configured to run on java 11
- name: Setup java 11 for gradle
if: false
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
# to reduce complexity, testbed app uses sdk as a project reference
- name: Build testbed app for Android
if: false
run: |
cd sdk/branch-sdk-automation-testbed/
npm install
cd ./android
./gradlew assembleDebug
cd ../../
- name: Upload APK to BrowserStack
if: false
run: |
response=$(curl -X POST https://api-cloud.browserstack.com/app-automate/upload -u "${{ secrets.BROWSER_STACK_USER }}:${{ secrets.BROWSER_STACK_KEY }}" -F "file=@sdk/branch-sdk-automation-testbed/android/app/build/outputs/apk/debug/app-debug.apk")
parsed=$(echo $response | jq ".app_url")
echo "::add-mask::$parsed"
echo "APP_URL=$parsed" >> "$GITHUB_ENV"
- name: Execute automation tests for Android RN app
if: false
env:
IS_RN_APP: true
run: |
Expand Down

0 comments on commit 5ecb2c8

Please sign in to comment.