Skip to content

Commit

Permalink
wip added next step to start job on aws
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlitvinov committed Aug 27, 2024
1 parent fe9a888 commit 6ffcccf
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/uitests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-2
#
- name: Upload IPA to AWS Device Farm
id: upload-ipa
run: |
Expand Down Expand Up @@ -118,24 +118,24 @@ jobs:
echo "Waiting for Test Package upload to complete..."
sleep 10
done
#
# - name: Schedule Device Farm Automated Test
# id: run-test
# uses: aws-actions/[email protected]
# with:
# run-settings-json: |
# {
# "name": "GitHubAction-${{ github.workflow }}_${{ github.run_id }}_${{ github.run_attempt }}",
# "projectArn": "arn:aws:devicefarm:us-west-2:381491970378:project:4c28c1e5-8344-4d34-919c-a1e9377d3b2f",
# "appArn": "${{ env.APP_ARN }}",
# "devicePoolArn": "arn:aws:devicefarm:us-west-2:381491970378:devicepool:4c28c1e5-8344-4d34-919c-a1e9377d3b2f/86ebd86a-2150-4997-b71f-2e3d72510e0d",
# "test": {
# "type": "APPIUM_JAVA_TESTNG",
# "testPackageArn": "${{ env.TEST_PACKAGE_ARN }}",
# "testSpecArn": "default.yml"
# }
# }
# artifact-types: ALL
- name: Schedule Device Farm Automated Test
id: run-test
uses: aws-actions/[email protected]
with:
run-settings-json: |
{
"name": "GitHubAction-${{ github.workflow }}_${{ github.run_id }}_${{ github.run_attempt }}",
"projectArn": "arn:aws:devicefarm:us-west-2:381491970378:project:4c28c1e5-8344-4d34-919c-a1e9377d3b2f",
"appArn": "${{ env.APP_ARN }}",
"devicePoolArn": "arn:aws:devicefarm:us-west-2:381491970378:run:4c28c1e5-8344-4d34-919c-a1e9377d3b2f/5d86aa35-762e-4282-a93b-9ecbd812c2b4",
"test": {
"type": "APPIUM_JAVA_TESTNG",
"testPackageArn": "${{ env.TEST_PACKAGE_ARN }}",
"testSpecArn": "default.yml"
}
}
artifact-types: ALL
#
# - uses: actions/upload-artifact@v4
# if: always()
Expand Down

0 comments on commit 6ffcccf

Please sign in to comment.