BrowserStack Parallel Devices #12
This file contains hidden or 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: BrowserStack Parallel Devices | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| filter: | |
| description: 'Filter for tests' | |
| required: true | |
| default: '@Smoke and @Automated' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| container: crowdar/lippia:3.3.0.0-jdk17 | |
| environment: Automation | |
| strategy: | |
| matrix: | |
| device: | |
| - "Samsung Galaxy A11" | |
| - "Samsung Galaxy A51" | |
| - "Motorola Moto G71 5G" | |
| fail-fast: false # Esto permite que si un trabajo falla, los otros continúen ejecutándose | |
| env: | |
| BSUSER: ${{ secrets.BSUSER }} | |
| AUTHTOKEN: ${{ secrets.AUTHTOKEN }} | |
| BSDEVICE: ${{ matrix.device }} | |
| BSAPP: ${{ secrets.BSAPP }} | |
| LTM_GENERAL: ${{ secrets.LTM_GENERAL }} | |
| LTM_GENERAL_PASS: ${{ secrets.LTM_GENERAL_PASS }} | |
| steps: | |
| - name: Checkout to the repository | |
| uses: actions/checkout@v4 | |
| - name: Configuring JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Set Android version based on selected device | |
| run: | | |
| case "${{ matrix.device }}" in | |
| "Samsung Galaxy A11") echo "BSOS=10" >> $GITHUB_ENV ;; | |
| "Samsung Galaxy A51") echo "BSOS=10" >> $GITHUB_ENV ;; | |
| "Motorola Moto G71 5G") echo "BSOS=11" >> $GITHUB_ENV ;; | |
| esac | |
| - name: Configure Maven settings | |
| run: | | |
| mkdir -p ~/.m2 | |
| echo '<settings> | |
| <mirrors> | |
| <mirror> | |
| <id>central</id> | |
| <url>https://repo.maven.apache.org/maven2</url> | |
| <mirrorOf>*</mirrorOf> | |
| </mirror> | |
| </mirrors> | |
| </settings>' > ~/.m2/settings.xml | |
| - name: Cache Maven dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Checking Maven dependencies | |
| run: mvn dependency:resolve | |
| - name: Setting environment variable | |
| run: echo "COMBINED_FILTER=${{ github.event.inputs.filter }}" >> $GITHUB_ENV | |
| - name: Debugging environment variables | |
| run: | | |
| echo "BSDEVICE: $BSDEVICE" | |
| echo "BSOS: $BSOS" | |
| echo "BSUSER: $BSUSER" | |
| echo "AUTHTOKEN: $AUTHTOKEN" | |
| echo "BSAPP: $BSAPP" | |
| echo "LTM_GENERAL: $LTM_GENERAL" | |
| echo "LTM_GENERAL_PASS: $LTM_GENERAL_PASS" | |
| - name: Running Maven clean test | |
| run: | | |
| echo "Running tests with filter: '$COMBINED_FILTER' on device: '$BSDEVICE' with OS version: '$BSOS'" | |
| mvn clean test -Dcrowdar.cucumber.filter="'$COMBINED_FILTER'" \ | |
| -Denv.BSDEVICE="${{ matrix.device }}" \ | |
| -Denv.BSOS="$BSOS" \ | |
| -DTEST_MANAGER_RUN_NAME="AUTO-${{ matrix.device }}-${{ github.event.inputs.filter }}" \ | |
| -DLTM_GENERAL="${{ secrets.LTM_GENERAL }}" \ | |
| -DLTM_GENERAL_PASS="${{ secrets.LTM_GENERAL_PASS }}" \ | |
| -PBrowserStack -PAndroid -U | |
| shell: bash | |
| - name: Uploading test reports | |
| uses: actions/upload-artifact@v4.3.4 | |
| with: | |
| name: test-results-${{ matrix.device }} | |
| path: target/reports/ | |
| - name: Uploading HTML test report | |
| uses: actions/upload-artifact@v4.3.4 | |
| with: | |
| name: html-report-${{ matrix.device }} | |
| path: target/cucumber-reports/cucumber-html-report/*.html | |
| - name: Uploading surefire test reports | |
| uses: actions/upload-artifact@v4.3.4 | |
| with: | |
| name: test-results-surefire-${{ matrix.device }} | |
| path: target/surefire-reports/ | |