Update avd-action-ubuntu.yml #21
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: TEST AVD Action ubuntu | |
# on: | |
# push: | |
# branches: | |
# - develop | |
# pull_request: | |
# branches: [ "develop" ] | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# runAsRoot: [true] # Define para executar como root | |
# steps: | |
# - name: Set up JDK 17 | |
# uses: actions/setup-java@v4 | |
# with: | |
# java-version: '17' | |
# distribution: 'adopt' | |
# - name: Appium & AVD action ubuntu (a&a-u) | |
# uses: fahleiro/[email protected] | |
# if: matrix.runAsRoot | |
# - name: TESTING JAVA | |
# run: java -version | |
# - name: TESTING ANDROID ENVIRONMENTS | |
# run: | | |
# echo $ANDROID_HOME | |
# echo $ANDROID_SDK_ROOT | |
# echo $ANDROID_AVD_HOME | |
# - name: Test adb devices | |
# run: | | |
# ~/Android/Sdk/platform-tools/adb devices |