Skip to content

Commit

Permalink
Multiline condition
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasberglund committed Dec 13, 2024
1 parent 1d61afa commit 72fee6a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/android-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -561,15 +561,19 @@ jobs:
run: ./android/scripts/run-instrumented-tests-repeat.sh ${{ matrix.test-repeat }}

- name: Pull test report
if: always() && matrix.test-repeat != 0 && github.event.inputs.e2e_tests_infra_flavor == 'stagemole'
if: >
always() && matrix.test-repeat != 0 &&
github.event.inputs.e2e_tests_infra_flavor == 'stagemole'
shell: bash -ieo pipefail {0}
env:
REPORT_DIR: ${{ steps.prepare-report-dir.outputs.report_dir }}
run: ./android/scripts/pull-test-output.sh --test-type e2e

- name: Upload e2e instrumentation report
uses: actions/upload-artifact@v4
if: always() && matrix.test-repeat != 0 && github.event.inputs.e2e_tests_infra_flavor == 'stagemole'
if: >
always() && matrix.test-repeat != 0 &&
github.event.inputs.e2e_tests_infra_flavor == 'stagemole'
with:
name: e2e-instrumentation-report
path: ${{ steps.prepare-report-dir.outputs.report_dir }}
Expand Down

0 comments on commit 72fee6a

Please sign in to comment.