-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip added next step to start job on aws
- Loading branch information
johnlitvinov
committed
Aug 27, 2024
1 parent
fe9a888
commit 6ffcccf
Showing
1 changed file
with
19 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | | ||
|
@@ -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() | ||
|