Skip to content

Commit

Permalink
fix: use field
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Sep 24, 2024
1 parent 377557a commit f4e5126
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/e2ePerformanceTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,21 @@ jobs:
# Run the AWS Device Farm test
gh workflow run realm/aws-devicefarm/test-application@7b9a91236c456c97e28d384c9e476035d5ea686b \
--name "App E2E Performance Regression Tests" \
--project_arn ${{ secrets.AWS_PROJECT_ARN }} \
--device_pool_arn ${{ secrets.AWS_DEVICE_POOL_ARN }} \
--app_file zip/app-e2eRelease.apk \
--app_type ANDROID_APP \
--test_type APPIUM_NODE \
--test_package_file App.zip \
--test_package_type APPIUM_NODE_TEST_PACKAGE \
--test_spec_file tests/e2e/TestSpec.yml \
--test_spec_type APPIUM_NODE_TEST_SPEC \
--remote_src false \
--file_artifacts "Customer Artifacts.zip, Test spec output.txt" \
--log_artifacts debug.log \
--cleanup true \
--timeout 7200
--field name=App E2E Performance Regression Tests \
--field project_arn=${{ secrets.AWS_PROJECT_ARN }} \
--field device_pool_arn=${{ secrets.AWS_DEVICE_POOL_ARN }} \
--field app_file=zip/app-e2eRelease.apk \
--field app_type=ANDROID_APP \
--field test_type=APPIUM_NODE \
--field test_package_file=App.zip \
--field test_package_type=APPIUM_NODE_TEST_PACKAGE \
--field test_spec_file=tests/e2e/TestSpec.yml \
--field test_spec_type=APPIUM_NODE_TEST_SPEC \
--field remote_src=false \
--field file_artifacts="Customer Artifacts.zip, Test spec output.txt" \
--field log_artifacts=debug.log \
--field cleanup=true \
--field timeout=7200
TEST_RESULT=$?
Expand Down

0 comments on commit f4e5126

Please sign in to comment.